2
rupeshx
6y

I want to merge select and delete/drop query together and make it as one in MySQL. For ex:

Select * from t where year = 2015 and drop table tab;

or

Select * from t where year = 2015 and delete from tab;

and ya you can't use ';' for merging

Comments
Add Comment