我想使用INSERT ... ON DUPLICATE KEY UPDATE
. 但我无法让它工作。
这就是我想做的:
- 尝试插入记录。如果插入成功,那很好。
- 如果该记录存在,则更新该记录。
- 更新记录时,如果check_status字段为1,则留下description和comment字段。
- 更新记录时,check_status 字段为 0,然后更新 description 和 comment 字段。
在写出SQL之前,我们假设some_table中有如下记录:
column name | val
-----------------+-------------------------
some_unique_key | 32
description | existing description
comment | existing comment
check_status | 1
所以为了做我上面描述的操作,我使用 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')
我认为 VALUES(description) 会给我数据库表中现有记录(即“现有描述”)的值。然而,它似乎给了我我试图插入的内容,即“一些描述”。
有谁知道如何使用 SQL 正确执行此操作。尝试 upsert 时引用现有记录中的值的最佳方法是什么?