Home >Database >Mysql Tutorial >mysql数据库插入语句之insertinto,replaceinto,insertignore_MySQL

mysql数据库插入语句之insertinto,replaceinto,insertignore_MySQL

WBOY
WBOYOriginal
2016-06-01 13:01:511405browse

最近才发现mysql的插入语句居然有如此多的用法,这里拿来分享一下.

①关于insert into :

insert into table_name values();

insert into table_name (column) values ();

insert into table_name values(select (column) from table_name2);

这里的插入只需要注意一点的就是:

如果发生主键冲突,(也就是插入的主键已经在表中存在时),系统报错.

②replace into :

replace into 跟 insert into 功能类似,不同点在于:replace into 首先尝试插入数据到表中, 1. 如果发现表中已经有此行数据(根据主键或者唯一索引判断)则先删除此行数据,然后插入新的数据。 2. 否则,直接插入新数据。
要注意的是:插入数据的表必须有主键或者是唯一索引!否则的话,replace into 会直接插入数据,这将导致表中出现重复的数据。

③insert ignore into

insert ignore into 与 insert into 的主要区别在于当发生主键冲突的时候,系统不会报错,直接跳过该条记录的插入.

感觉是不是很有意思呢...

下面我们来做个实验.

create table test (

`id` int(11) not null auto_increment comment '主键',

`name` varchar(20) not null comment '姓名',

primary key (`id`)

)ENGINE=InnoDB DEFAULT CHARSET utf8 comment='测试表';

然后我们插入几条数据进去.

insert into test (name) values ('vein');

insert into test (name) values ('vein1');

insert into test (name) values ('vein2');

当执行下面这条语句时:

insert into test (id,name) values (1,'vein11');

系统会报错,说主键冲突.

如果执行下面的语句时:

insert ignore into test (id,name) values (1,'vein11');

系统不会报错,直接忽略.

replace into test(id,name) values(1,'vein11');

系统插入成功,并且修改表中记录为

1, vein11.

Edited by VeinQueen

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn