淺析MySQL replace into 的用法

choubou發表於2021-09-09

在 SQL Server 中可以這樣處理:


複製程式碼 程式碼如下: 
if not exists (select 1 from t where id = 1)
   insert into t(id, update_time) values(1, getdate())
else
   update t set update_time = getdate() where id = 1


那麼 MySQL 中如何實現這樣的邏輯呢?彆著急!MySQL 中有更簡單的方法: replace into


複製程式碼 程式碼如下: 
replace into t(id, update_time) values(1, now());
或 
replace into t(id, update_time) select 1, now();


replace into 跟 insert 功能類似,不同點在於:replace into 首先嚐試插入資料到表中, 1. 如果發現表中已經有此行資料(根據主鍵或者唯一索引判斷)則先刪除此行資料,然後插入新的資料。 2. 否則,直接插入新資料。 要注意的是:插入資料的表必須有主鍵或者是唯一索引!否則的話,replace into 會直接插入資料,這將導致表中出現重複的資料。

MySQL replace into 有三種形式:


複製程式碼 程式碼如下:
 replace into tbl_name(col_name, ...) values(...)
 replace into tbl_name(col_name, ...) select ...
 replace into tbl_name set col_name=value, ...


前兩種形式用的多些。其中 “into” 關鍵字可以省略,不過最好加上 “into”,這樣意思更加直觀。另外,對於那些沒有給予值的列,MySQL 將自動為這些列賦上預設值。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4548/viewspace-2804384/,如需轉載,請註明出處,否則將追究法律責任。

相關文章