程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> INSERT IGNORE 與 INSERT INTO的區別

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.bKjia.c0m','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.bKjia.c0m/database/mysql/56643.htm

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved