Is there a limit to WHERE IN clause in MySQL?
I am talking about that comma delimited string: 41,42,39,40,37,38
How many ids I can use in that string?
DELETE FROM oc_table WHERE id IN (41,42,39,40,37,38)
Is there a limit to WHERE IN clause in MySQL?
I am talking about that comma delimited string: 41,42,39,40,37,38
How many ids I can use in that string?
DELETE FROM oc_table WHERE id IN (41,42,39,40,37,38)