ON DUPLICATE KEY UPDATE with WHERE condition

Deadly 提交于 2019-12-09 16:51:12

问题


I update/insert values in a single table with the ON DUPLICATE KEY UPDATE function. So far everything is fine.

INSERT INTO table1 SET field1=aa, field2=bb, field3=cc
ON DUPLICATE KEY UPDATE SET field1=aa, field2=bb, field3=cc;

But now I would like to achieve that the update only is done if a condition (WHERE) is true.

Syntactically not correct:

INSERT INTO table1 SET field1=aa, field2=bb, field3=cc
ON DUPLICATE KEY UPDATE SET field1=aa, field2=bb, field3=cc WHERE field4=zz;

Any ideas how the correct SQL statement is?

Thanks a lot.


回答1:


Using IF() should work, though it's not nice:

INSERT INTO table1 SET 
 field1=aa, 
 field2=bb, 
 field3=cc 
ON DUPLICATE KEY UPDATE SET 
 field1 = IF( field4 = zz, aa, field1 ),
 field2 = IF( field4 = zz, bb, field2 ),
 field3 = IF( field4 = zz, cc, field3 )

Only update the fields with new values if the condition is met, otherwise keep the old ones.



来源:https://stackoverflow.com/questions/6982884/on-duplicate-key-update-with-where-condition

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!