MYSQL中replace into的用法

來源:互聯網
上載者:User

標籤:技術分享   資料庫   time   必須   自增   判斷   col   返回   update   

建立一個test表,三個欄位,id,title,uid,  id是自增的主鍵,uid是唯一索引;

插入兩條資料

insert into  test(title,uid) VALUES (‘123465‘,‘1001‘);insert into  test(title,uid) VALUES (‘123465‘,‘1002‘);

執行單條插入資料可以看到,執行結果如下:
[SQL]insert into  test(title,uid) VALUES (‘123465‘,‘1001‘);受影響的行: 1時間: 0.175s

 

使用 replace into插入資料時:

REPLACE INTO test(title,uid) VALUES (‘1234657‘,‘1003‘);

執行結果:
[SQL]REPLACE INTO test(title,uid) VALUES (‘1234657‘,‘1003‘);
受影響的行: 1
時間: 0.035s

當前資料庫test表所有資料如下:

 

當uid存在時,使用replace into 語句

REPLACE INTO test(title,uid) VALUES (‘1234657‘,‘1001‘);[SQL]REPLACE INTO test(title,uid) VALUES (‘1234657‘,‘1001‘);受影響的行: 2時間: 0.140s

 

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 有三種形式:

1. replace into tbl_name(col_name, ...) values(...)

2. replace into tbl_name(col_name, ...) select ...

3. replace into tbl_name set col_name=value, ...

第一種形式類似於insert into的用法,

第二種replace select的用法也類似於insert select,這種用法並不一定要求列名匹配,事實上,MYSQL甚至不關心select返回的列名,它需要的是列的位置。例如,replace into tb1( name, title, mood) select rname, rtitle, rmood from tb2;?這個例子使用replace into從?tb2中將所有資料匯入tb1中。

第三種replace set用法類似於update set用法,使用一個例如“SET col_name = col_name + 1”的賦值,則對位於右側的列名稱的引用會被作為DEFAULT(col_name)處理。因此,該賦值相當於SET col_name = DEFAULT(col_name) + 1。

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

MYSQL中replace into的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.