MySQL中replace into語句的用法詳解。本站提示廣大學習愛好者:(MySQL中replace into語句的用法詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL中replace into語句的用法詳解正文
在向表中拔出數據的時刻,常常碰到如許的情形:
1、起首斷定數據能否存在;
2、假如不存在,則拔出;
3、假如存在,則更新。
在 SQL Server 中可以如許寫:
if not exists (select 1 from table where id = 1) insert into table(id, update_time) values(1, getdate()) else update table set update_time = getdate() where id = 1
在MySQL 中也能夠先select,斷定能否存在,存在則 update 不然 insert
但在MySQL 中有更簡略的辦法,應用 replace into症結字
replace into table(id, update_time) values(1, now());
或
replace into table(id, update_time) select 1, now();
replace into 跟 insert 功效相似,分歧點在於:replace into 起首測驗考試拔出數據到表中。
1、假如發明表中曾經有此行數據(依據主鍵或許獨一索引斷定)則先刪除此行數據,然後拔出新的數據。
2、 不然,直接拔出新數據。
要留意的是:拔出數據的表必需有主鍵或許是獨一索引!不然的話,replace into 會直接拔出數據,這將招致表中湧現反復的數據。
MySQL中replace into有三種寫法:
1. replace into table(col, ...) values(...)
2. replace into table(col, ...) select ...
3. replace into table set col=value, ...
前兩種情勢用的多些。個中 “into” 症結字可以省略,不外最好加上 “into”,如許意思加倍直不雅。
別的,關於那些沒有賜與值的列,MySQL 將主動為這些列賦上默許值。
惋惜的是replace不支撐update某些特征,也就不克不及直接看成update應用:
罕見update寫法:update table set col=col+1 where id=1;
應用replace into不支撐如許的寫法:replace into table set col=col+1,id=1;
1、起首斷定數據能否存在;(沒成績)
2、假如不存在,則拔出;(沒成績)
3、假如存在,某字段值在本來的基本上加上或減去某個數,如加一操作。(不支撐)