如果唯一键已存在,则插入或更新记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果唯一键已存在,则插入或更新记录相关的知识,希望对你有一定的参考价值。
This snippet allows you to insert new record into table. In case a unique key already exists - it updates appropriate fields only, leaving other fields untouched.
-- Unique key for table must be pre-defined INSERT INTO `tableName` VALUES (field1,field2,field3,'-1',...,fieldN,'0') ON DUPLICATE KEY UPDATE `field1` = 'abc', `field2` = '123'
以上是关于如果唯一键已存在,则插入或更新记录的主要内容,如果未能解决你的问题,请参考以下文章
CodeIgniter - 如果新的或更新的重复记录则插入活动记录