Bri*_*ark 3 mysql database upsert
我想使用执行一点点复杂的upsert操作INSERT ... ON DUPLICATE KEY UPDATE.但我无法让它发挥作用.
这就是我想做的事情:
在写出SQL之前,我们假设some_table中有以下记录:
column name | val
-----------------+-------------------------
some_unique_key | 32
description | existing description
comment | existing comment
check_status | 1
Run Code Online (Sandbox Code Playgroud)
所以为了进行上面描述的操作,我使用SQL如下:
INSERT INTO some_table ('description', 'comment', 'some_unique_key')
VALUES ('some description', 'some comment', 32)
ON DUPLICATE KEY UPDATE
description = IF(check_status = 1, VALUES(description), 'some description')
comment = IF(check_status = 1, VALUES(comment), 'some comment')
Run Code Online (Sandbox Code Playgroud)
我认为VALUES(描述)会给我DB表中现有记录(即'现有描述')的值.但是,它似乎给了我试图插入的东西,即"一些描述".
有没有人知道如何使用SQL正确地做到这一点.尝试upsert时,引用现有记录中的值的最佳方法是什么?
简单.不要使用VALUES()(你已经在使用它来引用现有的值check_status):
INSERT INTO some_table ('description', 'comment', 'some_unique_key')
VALUES ('some description', 'some comment', 32)
ON DUPLICATE KEY UPDATE
description = IF(check_status = 1, description, 'some description')
comment = IF(check_status = 1, comment, 'some comment')
Run Code Online (Sandbox Code Playgroud)
或者使用它来设置新内容而不是重复自己:
INSERT INTO some_table ('description', 'comment', 'some_unique_key')
VALUES ('some description', 'some comment', 32)
ON DUPLICATE KEY UPDATE
description = IF(check_status = 1, description, VALUES(description))
comment = IF(check_status = 1, comment, VALUES(comment))
Run Code Online (Sandbox Code Playgroud)