As an example, I want to get the list of all items with certain tags applied to them. I could do either of the following:
SELECT Item.ID, Item.Name FROM Item WH
The second one is more efficient in MySQL. MySQL will re-execute the query within the IN statement for every WHERE condition test.