首页 > 数据库 > MySQL > 正文

Mysql中“Insert into xxx on duplicate key update”问题

2024-07-24 12:41:55
字体:
来源:转载
供稿:网友

在看代码的过程中碰到了这一用法,不太理解,google了一下。它的意义其实是如果在insert语句末尾制定了“on duplicate key update”语句的话,则当插入行会导致一个unique索引或者primary key中出现重复值,则执行update中的语句,否则才插入新行。

例如,如果列a被定义为unique,并且值为1,则下列语句有同样的效果,也就是说一旦出入的记录中存在a=1的情况,直接更新c = c + 1,而不执行c = 3的操作。

  1. insert into table(a, b, c) values (1, 2, 3) on duplicate key update c = c + 1; 
  2.  
  3. update table set c = c + 1 where a = 1; 

另外值得一提的是,这个语句知识mysql中,而标准sql语句中是没有的。

 

参考文章: http://www.ludou.org/insert-into-on-duplicate-key-update-for-multiple-items.html

/***我相信,一旦你能将某个问题写清楚,你一定弄懂了。所以我要努力地写出来。 && It does not matter how slow as long as you do not stop***/

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表