是否可以将选择和删除/删除查询合并在一起并将其作为MySQL中的一个?

问题描述 投票:-3回答:1

我想将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注入

php mysql mysqli
1个回答
0
投票

不,你不能选择和删除表。

你只能加入表而不是查询。

© www.soinside.com 2019 - 2024. All rights reserved.