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
2010-01-07 15:42:26
A:
Versus what? As long as your WHERE clause values are indexed appropriately, you should be fine (in general).
Matt Rogish
2010-01-07 15:42:36
+2
A:
Assuming you have an index on whatever field you are doing the IN
on, you should be fine.
Eric Petroelje
2010-01-07 15:42:46
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
2010-01-07 15:44:01