is there a way to batch up deletes for MySQL when using PHP (mysqli)?
With inserts you can do something like
insert into tbl (...) values (...) (...) (...) ...
is there any equivalent for deletes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
OR
you can make sure you delete the right data by doing select first…
ps: for the php,
or