Reputation: 63686
Will this kind of query bring performance issue?
Upvotes: 0
Views: 130
Reputation: 5932
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.
Upvotes: 0
Reputation: 60569
Assuming you have an index on whatever field you are doing the IN
on, you should be fine.
Upvotes: 2
Reputation: 24883
Versus what? As long as your WHERE clause values are indexed appropriately, you should be fine (in general).
Upvotes: 0
Reputation: 268502
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.
Upvotes: 0