I have the below queries and i can run them one by one successfully,
Delete from eventor.user_role ;
Delete FROM eventor.role ;
delete from eventor.user ;
but when i run all of them together, it complains with the error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Delete FROM eventor.role ;
This is a surprise for me since, i can run the
Delete FROM eventor.role ;
successfully, and i have terminated all the queries using ;
.
So, why am i getting this, and how can i fix it?