码迷,mamicode.com
首页 > 其他好文 > 详细

INSERT IGNORE 与 INSERT INTO的区别

时间:2015-06-15 15:55:41      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

insert ignore表示,如果中已经存在相同的记录,则忽略当前新数据;


insert ignore into table(name)  select  name from table2


INSERT INTO有无数据都插入,如果主键则不插入

1.insert语句一次可以插入多组值,每组值用一对圆括号括起来,用逗号分隔,如下:

insert into `news`(title,body,time) values(‘www.111cn.net‘,‘body 1‘,now()),(‘title 2‘,‘body 2‘,now());
 
 
下面通过代码说明之间的区别,如下:

create table testtb( 
id int not null primary key, 
name varchar(50), 
age int 
);

insert into testtb(id,name,age)values(1,"www.111Cn.net",13); 
select * from testtb; 
insert ignore into testtb(id,name,age)values(1,"aa",13); 
select * from testtb;//仍是1,“bb”,13,因为id是主键,出现主键重复但使用了ignore则错误被忽略 
replace into testtb(id,name,age)values(1,"aa",12); 
select * from testtb; //数据变为1,"aa",12

更多详细内容请查看:http://www.111cn.net/database/mysql/56643.htm

INSERT IGNORE 与 INSERT INTO的区别

标签:

原文地址:http://www.cnblogs.com/xuan52rock/p/4577061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!