INSERT IGNORE 与 INSERT INTO的区别_MySQL
例
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
bitsCN.com上一篇: thinkPHP MySQL 关于文章字段,内容分页的几个小问题?
下一篇: 请讲解该排序
推荐阅读
-
mysql insert if not exists防止插入重复记录的方法
-
mySQL中LEN()与DATALENGTH()的区别
-
mySQL中in查询与exists查询的区别小结
-
mysql int(3)与int(11)的区别详解
-
使用MySQL的LAST_INSERT_ID来确定各分表的唯一ID值
-
轻松掌握MySQL函数中的last_insert_id()
-
MySQL中REPLACE INTO和INSERT INTO的区别分析
-
mysql与mysqli的区别与用法说明
-
mysql insert的几点操作(DELAYED,IGNORE,ON DUPLICATE KEY UPDATE )
-
mysql insert if not exists防止插入重复记录的方法