mysql中经常使用的3种插入数据的语句:
insert into表示插入数据,数据库会检查主键(PrimaryKey),如果出现重复会报错;
replace into表示插入替换数据,需求表中有PrimaryKey,或unique索引的话,如果数据库已存在数据,则用新数据替换,如果没有数据效果则和insert into1样;
REPLACE语句会返回1个数,来唆使受影响的行的数目。该数是被删除和被插入的行数的和。如果对1个单行REPLACE该数为1,则1行被插入,同时没有行被删除。如果该数大于1,则在新行被插入前,有1个或多个旧行被删除。如果表包括多个唯1索引,并且新行复制了在不同的唯1索引中的不同旧行的值,则有多是1个单1行替换了多个旧行。
insert ignore表示,如果中已存在相同的记录,则疏忽当前新数据;
注:这些都是根据主键来的。。。
下面通过代码说明之间的区分,以下:
create table testtb(
id int not null primary key,
name varchar(50),
age int
);
insert into testtb(id,name,age)values(1,"bb",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