例
insert ignore表示,如果中已經(jīng)存在相同的記錄,則忽略當(dāng)前新數(shù)據(jù);
insert ignore into table(name) select name from table2
例
INSERT INTO有無數(shù)據(jù)都插入,如果主鍵則不插入
1.insert語句一次可以插入多組值,每組值用一對圓括號括起來,用逗號分隔,如下:
insert into `news`(title,body,time) values('www.111cn.net','body 1',now()),('title 2','body 2',now());
下面通過代碼說明之間的區(qū)別,如下:
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是主鍵,出現(xiàn)主鍵重復(fù)但使用了ignore則錯誤被忽略
replace into testtb(id,name,age)values(1,"aa",12);
select * from testtb; //數(shù)據(jù)變?yōu)?,"aa",12
更多詳細內(nèi)容請查看:http://www.111cn.net/database/mysql/56643.htm
bitsCN.com聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com