mysql 存在更新 不存在插入

來源:互聯網
上載者:User

看程式竟然發現Mysql有這個功能!

今天寫程式,新發現……………………,相當不錯^_^,省略了很多功夫,每天1G多的日誌!!

MySQL 自4.1版以後開始支援INSERT … ON DUPLICATE KEY UPDATE文法,使得原本需要執行3條SQL語句(SELECT,INSERT,UPDATE),縮減為1條語句即可完成。

INSERT ... ON DUPLICATE KEY UPDATE,當插入的記錄會引發主鍵衝突或者違反唯一約束時,則使用UPDATE更新舊的記錄,否則插入新記錄。

例如ipstats表結構如下:

CREATE TABLE ipstats (ip VARCHAR(15) NOT NULL UNIQUE,clicks SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0');

原本需要執行3條SQL語句,如下:

IF (SELECT * FROM ipstats WHERE ip='192.168.0.1') {    UPDATE ipstats SET clicks=clicks+1 WHERE ip='192.168.0.1';} else {    INSERT INTO ipstats (ip, clicks) VALUES ('192.168.0.1', 1);}

而現在只需下面1條SQL語句即可完成:

INSERT INTO ipstats VALUES('192.168.0.1', 1) ON DUPLICATE KEY UPDATE clicks=clicks+1;

注意,要使用這條語句,前提條件是這個表必須有一個唯一索引或主鍵。

再看一例子:
mysql> desc test;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| uid   | int(11)     | NO   | PRI |         |       |
| uname | varchar(20) | YES |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

mysql> select * from test;
+-----+--------+
| uid | uname |
+-----+--------+
|   1 | uname1 |
|   2 | uname2 |
|   3 | me     |
+-----+--------+
3 rows in set (0.00 sec)

mysql> INSERT INTO test values ( 3,'insertName' )
    -> ON DUPLICATE KEY UPDATE uname='updateName';
Query OK, 2 rows affected (0.03 sec)

mysql> select * from test;
+-----+------------+
| uid | uname      |
+-----+------------+
|   1 | uname1     |
|   2 | uname2     |
|   3 | updateName |
+-----+------------+
3 rows in set (0.00 sec)

mysql> create index i_test_uname on test(uname);
Query OK, 3 rows affected (0.20 sec)
Records: 3 Duplicates: 0 Warnings: 0

mysql> INSERT INTO test VALUES ( 1 , 'uname2')   
-> ON DUPLICATE KEY UPDATE uname='update2records';
Query OK, 2 rows affected (0.00 sec)

mysql> select * from test;
+-----+----------------+
| uid | uname          |
+-----+----------------+
|   2 | uname2         |
|   1 | update2records |
|   3 | updateName     |
+-----+----------------+
3 rows in set (0.00 sec)

插入時會與兩條記錄發生衝突,分別由主鍵和唯一索引引起。但最終只UPDATE了其中一條。這在手冊中也說明了,有多個唯一索引(或者有鍵也有唯一索引)的情況下,不建議使用該語句。

create table xx (sad,xasd,asda,primary key(a,x,a));就可以用了,注意一定要有由主鍵和唯一索引^_^

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.