欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解MySQL主键唯一键重复插入解决方法

程序员文章站 2022-03-16 20:43:18
目录1. ignore2. replace3. on duplicate key update我们插入数据的时候,有可能碰到重复数据插入的问题,但是这些数据又是不被允许有重复值:create tabl...

我们插入数据的时候,有可能碰到重复数据插入的问题,但是这些数据又是不被允许有重复值:

create table stuinfo (
  id int not null comment '序号',
  name varchar(20) not null default '' comment '姓名',
  age int not null default 0 comment '年龄',
  primary key (id),
  unique key uniq_name(name)
) engine=innodb default charset=utf8 comment='学生表';
mysql> insert into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25),(2,'aa',24);
error 1062 (23000): duplicate entry '1' for key 'primary'

解决方案:

1. ignore

使用ignore当插入的值遇到主键(primary key)或者唯一键(unique key)重复时自动忽略重复的记录行,不影响后面的记录行的插入。

insert ignore into stuinfo (name,birthday,is_deleted) values ('yoona','1990-01-05',0),('aa','1990-01-16',0),('bb','1990-01-17',0);

运行结果:

mysql> insert ignore into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25),(2,'aa',24);
query ok, 2 rows affected (0.02 sec)
records: 3  duplicates: 1  warnings: 0
mysql> select * from stuinfo; 
+----+-------+-----+
| id | name  | age |
+----+-------+-----+
|  1 | yoona |  20 |
|  2 | aa    |  24 |
+----+-------+-----+
2 rows in set (0.00 sec)

我们可以从运行结果中看出,只有两行受到影响,意思即(1,'yoona',20)数据插入,(1,'xiaosi',25)重复数据自动被忽略,(2,'aa',24)不重复数据继续插入,不会受到重复数据的影响;

2. replace

使用replace当插入的记录遇到主键或者唯一键重复时先删除表中重复的记录行再插入。

mysql> replace into stuinfo (name,birthday,is_deleted) values ('yoona','1990-01-15',0),('yoona','1990-02-16',0),('aa','1990-01-13',0);
query ok, 4 rows affected (0.02 sec)
records: 3  duplicates: 1  warnings: 0
运行结果:
 
mysql> select * from stuinfo;                                                   +----+-------+------------+------------+
| id | name  | birthday   | is_deleted |
+----+-------+------------+------------+
| 21 | yoona | 1990-02-16 |          0 |
| 22 | aa    | 1990-01-13 |          0 |
+----+-------+------------+------------+
2 rows in set (0.00 sec)

从输出的信息可以看到是4行受影响,说明它是先插入了(‘yoona','1990-01-15',0)然后又删除了(‘yoona','1990-01-15',0)。

3. on duplicate key update

当插入的记录遇到主键或者唯一键重复时,会执行后面定义的update操作。相当于先执行insert 操作,再根据主键或者唯一键执行update操作。

drop table  if exists stuinfo;
create table stuinfo (
  id int not null comment '序号',
  name varchar(20) not null default '' comment '姓名',
  age int not null default 0 comment '年龄',
  primary key (id),
  unique key uniq_name(name)
) engine=innodb default charset=utf8 comment='学生表';

在on duplicate key update后values解释:

vaules(age)指的是待插入的记录的值

age指得是表的自身值,已插入值。

(1)第一种情形:

#values(age) 待插入值 25
insert into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25) on duplicate key update age = values(age) + 1;

相当于:

insert into stuinfo (id,name,age) values (1,'yoona',20);
update stuinfo 
set age = values(age) + 1
where id = 1;

运行结果:

mysql> insert into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25) on duplicate key update age = values(age) + 1;
query ok, 3 rows affected (0.01 sec)
records: 2  duplicates: 1  warnings: 0
mysql> select * from stuinfo;   
+----+-------+-----+
| id | name  | age |
+----+-------+-----+
|  1 | yoona |  26 |
+----+-------+-----+
1 row in set (0.00 sec)

(2)第二种情形:

#age 已插入值 20
insert into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25) on duplicate key update age = age + 1;

相当于:

insert into stuinfo (id,name,age) values (1,'yoona',20);
update stuinfo 
set age = age + 1
where id = 1;

运行结果:

mysql> insert into stuinfo (id,name,age) values (1,'yoona',20),(1,'xiaosi',25) on duplicate key update age = age + 1;
query ok, 3 rows affected (0.02 sec)
records: 2  duplicates: 1  warnings: 0
mysql> select * from stuinfo;
 +----+-------+-----+
| id | name  | age |
+----+-------+-----+
|  1 | yoona |  21 |
+----+-------+-----+
1 row in set (0.00 sec)

如果遇到重复插入的数据的情形,on duplicate key update用来对已插入的数据进行修改,可以使用获取重复已插入数据(直接使用字段名称),也可以获取重复待插入数据(values(字段名称))。我们不会对重复待插入数据进行插入操作。

重复已插入数据:上例中的(1,'yoona',20)

重复待插入数据:上例中的(1,'yoona',25)

到此这篇关于详解mysql主键唯一键重复插入解决方法的文章就介绍到这了,更多相关mysql主键唯一键重复插入内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!