I have a web page where the user can cherry pick a number of records to be deleted. So, now I have a list of ID's to be deleted. Is there a better way to delete these than sending individual delete statements?
Thx for the help.
| SitePoint Sponsor |

I have a web page where the user can cherry pick a number of records to be deleted. So, now I have a list of ID's to be deleted. Is there a better way to delete these than sending individual delete statements?
Thx for the help.
- A. Alfred Ayache
PHP/MySQL ZCE

Code:delete sometable where id in (1, 2, 3)
Bookmarks