Just wondering which is faster:
DELETE FROM table_name WHERE X='1' DELETE FROM table_name WHERE X='2' DELETE FROM table_name WHERE X='3'
or
DELETE FROM table_name WHERE X IN ('1', '2', '3')
Any ideas, hints, or references where to read?
Thank you all!
The single delete will be faster for a few reasons: