摘要: 阅读全文
posted @ 2019-12-11 23:12 东坡肉肉君 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 相当于取别名 这里结合一下无列名注入的知识点: 这种方法在第十届SWPUCTF的web1——广告招租里考到了: 阅读全文
posted @ 2019-12-11 22:50 东坡肉肉君 阅读(772) 评论(1) 推荐(0) 编辑
摘要: 步骤:1、先执行括号里的语句:查询 select id from three ,将查询出来的数据作为一个结果集 取名为 a2、然后 再 select * from a 查询a ,将 结果集a 全部查询出来 select * from (select id from three)a; 阅读全文
posted @ 2019-12-11 22:42 东坡肉肉君 阅读(2102) 评论(0) 推荐(0) 编辑
摘要: 一、INNER JOIN 用法: select column_name(s) from table 1 INNER JOIN table 2 ON table 1.column_name=table 2.column_name 例子: 两个表:three,user select* from thre 阅读全文
posted @ 2019-12-11 22:31 东坡肉肉君 阅读(459) 评论(0) 推荐(0) 编辑