我想将select和delete / drop查询合并在一起,并在MySQL中将其作为一个。例如:
Select * from t where year = 2015 and drop table tab;
要么
Select * from t where year = 2015 and delete from tab;
而且我不允许使用';'合并。
它只适用于一些SQL注入
不,你不能选择和删除表。
你只能加入表而不是查询。