I've got to delete about 10 email addresses from a huge database, wanted to find out the correct way to delete multiple emails from the db at once. I can delete one by one, just wondered if it was separating them by commas which I now need.
I presumed this is the appropriate SQL Statement:
DELETE FROM `subscribers`
WHERE email='example1@example.com,example2@example.com,example3@example.com'
Is this the correct way to list multiple emails in order for them to be deleted from the database?