1.使用or操作符
select *
from a
where a.no = '' or
a.no = '' or
a.no = '' or
a.no = '' or
........
a.no = '';
2.使用临时表
1)create table b (no number);
2)把数据导入到b表中
3)select *
from a,b
where a.no = b.no;
http://blog.csdn.net/honganboy/article/details/6831759
select *
from a
where a.no = '' or
a.no = '' or
a.no = '' or
a.no = '' or
........
a.no = '';
2.使用临时表
1)create table b (no number);
2)把数据导入到b表中
3)select *
from a,b
where a.no = b.no;
http://blog.csdn.net/honganboy/article/details/6831759
本文详细解析了SQL注入的原理、常见类型及其防范措施,通过实例演示了如何识别并防御SQL注入攻击,旨在提升开发者的安全意识与实践能力。

2397

被折叠的 条评论
为什么被折叠?



