标签: php mysql mysqli
我想将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注入
答案 0 :(得分:0)
不,你不能选择和删除一个表。
你只能加入表而不是查询。