Suggested that we have this SQL text with 3 MySQL commands:
show tables;
some nonesense command which makes error;
show tables;
The first and third SQL are valid, the second isn't. So, when passing this SQL text to mysqli_multi_query, does MySQL stop execution at the second command (error one) or it tries to go on until the last command? Coz it is dangerous if those commands after the error one relies on the error one.
See Question&Answers more detail:os