I’m using a statement like this with PHP/Mysql:
DELETE FROM `site1` . `users` WHERE `email` IN ('eric@me.net', 'joe@aol.com', 'bill@me.com')
I may have a few hundred or a thounsand at a time, will this be a problem for MySql to handle?
Is there a limit to the array used for the “IN” function?
thanks
According to the documentation, there is no specific limit on the number of arguments to
IN:“The number of values in the IN list is only limited by the max_allowed_packet value.”