views:

42

answers:

4

Will this kind of query bring performance issue?

A: 

Any query will cause performance issues (to some degree, technically). The question is not whether it will cause performance issues, the question is whether it's necessary.

Jonathan Sampson
A: 

Versus what? As long as your WHERE clause values are indexed appropriately, you should be fine (in general).

Matt Rogish
+2  A: 

Assuming you have an index on whatever field you are doing the IN on, you should be fine.

Eric Petroelje
A: 

Sometimes yes, but sometimes this syntax is also necessary or better than any alternative you might have to achieve the same result set. In order to fully say that in your case the performance will be worse than it would be with a differently written query, we would need to know your exact query and database schema.

md5sum