在sql注入中我们通常会使用这样一条语句来爆破字段: id=-1 union select 1,2,3 --+ 源代码: SELECT * FROM users WHERE id=-1 union select 1,2,3 假如表的字段是三个,他会根据程序的设定来输出哪个字段。如果这时使用键值对来查 ...
分类:
其他好文 时间:
2021-06-02 11:12:14
阅读次数:
0
一、报错信息 Caused by: Column 'xxxx' in where clause is ambiguous 二、报错原因 表 person 和 表 class 都有字段 id 和 name ,所以要给它们增加别名来进行区分。 PersonVOMapper.java public int ...
分类:
其他好文 时间:
2021-02-04 12:11:49
阅读次数:
0
排序大家都经常用的吧,下面是个学生类,2 个字段:id[学号],score[分数], public class Stu { //编号 private Integer id; //分数 private Integer score; public Stu(Integer id, Integer scor ...
分类:
编程语言 时间:
2021-01-01 13:00:11
阅读次数:
0
这个题目比较坑,没有描述清楚 create TABLE #TB ( ID INT, 科目 int, 成绩 int ) select * from #TB insert into #TB(ID,科目,成绩) select 1,66,66 union select 1,55,55 union selec ...
分类:
其他好文 时间:
2020-12-01 12:15:35
阅读次数:
4
在oracle中判断字段id不是“123”时, select * from user where id<> '123'; 但是id为空的,却怎么也查询不出来。 原因是:字段为null的时候,只能通过is null或者is not null来判断。 这样写才是正确的: select * from us ...
分类:
数据库 时间:
2020-09-15 21:31:36
阅读次数:
83
List按指定字段的给出的自定义顺序进行排序 目录1、demo1:按字段id进行自定义排序 正文 #引言 有一个集合,对其进行排序,排序规则为:按对象中某个字段的特定顺序进行排序,比如:对象属性id,按照【4,2,5,1】的顺序排序; #代码: 1 public class Foo 2 { 3 pu ...
分类:
编程语言 时间:
2020-08-10 10:53:52
阅读次数:
73
php pdo备份数据库方法 备份表数据: create table tmp_article_info as select * from article_info 删除字段id ALTER TABLE sss DROP id; 还原表数据: truncate table tmp_article_in ...
分类:
数据库 时间:
2020-07-23 16:05:13
阅读次数:
107
新建一个test表,三个字段,id,title,uid, id是自增的主键,uid是唯一索引; 插入两条数据: 1 insert into test(title,uid) VALUES ('123465','1001'); 2 insert into test(title,uid) VALUES ( ...
分类:
数据库 时间:
2020-07-17 14:11:01
阅读次数:
79
关于无限级分类 第一种方案: 使用递归算法,也是使用频率最多的,大部分开源程序也是这么处理,不过一般都只用到四级分类。 这种算法的数据库结构设计最为简单。category表中一个字段id,一个字段fid(父id)。这样可以根据WHERE id = fid来判断上一级内容,运用递归至最顶层。 分析:通 ...
分类:
数据库 时间:
2020-06-28 09:19:40
阅读次数:
56
本篇文章以角色、用户、组三表为例,用户和角色是多对多的关系,用户和组是多对一的关系。关联时使用对方表的id,每张表至少有两个字段:id和name class Group(models.Model): name = models.CharField(max_length=50) class Role( ...
分类:
其他好文 时间:
2020-06-11 00:45:42
阅读次数:
63