Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use PostgreSQL 8.4, but i think my question can be expanded to most of the RDBMS.

I need to perform data-changing operation like update or delete for those rows, where the specified column has value from the specified set. For example I want to delete those rows, where id is in (1,4,7,8).

The whole operation should either succeed or fail, so I have two options here:

  • Use IN syntax, like

DELETE FROM my_table WHERE id IN (1,4,7,8)

  • Use several single operations executed within one transaction, like

DELETE FROM my_table WHERE id = 1;

DELETE FROM my_table WHERE id = 4;

...

Is there any difference between these two approaches when executed as plain SQL commands? Which one is better?

The same questions when using JDBC prepared statements for these operations?

share|improve this question
2  
the best way to see what is the difference is to use EXPLAIN to see how the planner executes first query. – Majid Azimi Dec 21 '11 at 16:18

2 Answers

up vote 2 down vote accepted

You should always use transactions, in my opinion. With the several-operation approach you will have many more round trips across the network. There may also be a difference in what indexes get used, so check out the query plan.

share|improve this answer
thanks, but both approaches run in a single transaction, and I'm asking for a difference between them – pavel_kazlou Dec 21 '11 at 16:16
ok, got the reason about network argument. Will check the query plan – pavel_kazlou Dec 21 '11 at 16:19

So I checked EXPLAIN ANALYZE and PostgreSQL uses special filter for IN (...) request when traversing the table. So the major difference should be in performance: with IN (...) you traverse the table one time. With N separate requests = ? you traverse table N times. Though PostgreSQL should optimize this so it's actually faster, but still must be slower that IN (...)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.