跳到主要內容

MySQL INSERT or UPDATE

有些時候在記錄資料時,總是會需要判斷資料有無存在,在進行資料寫入,或是更新資料。
所以至少都得先進行SELECT再去判斷資料有無存在,不存在就INSERT,存在就進行UPDATE,之前從沒找過有沒有更簡單的方法進行。
這次無意間找資料時,才看到INSERT ... ON DUPLICATE KEY UPDATE ...。

舉個簡單的範例,現在有個TABLE A如下

SQL範例如下
INSERT INTO `A`(`item_id`, `item_count`, `count_date`) 
VALUES ('SwefcskoWdsl', 1, '2013-05-14') 
ON DUPLICATE KEY UPDATE `item_count` = `item_count` + 1;

這段SQL就會依照當item_id與count_date資料不存在,則會新增;否則就會在指定的item_id與count_date的item_count進行+1的動作。

MySQL文件

P.S. 這時發現以前的自己好蠢Orz...

留言

這個網誌中的熱門文章

What is phpize

What is phpize According to the PHP official document : The phpize command is used to prepare the build environment for a PHP extension. If you need to build such an extension that from github or another code repositories, you can use  build tools to perform the build manually.