mysql 重复记录字段
有没有办法覆盖或跳过重复记录?
1062 - 键 1 的重复条目“2”
是否有办法添加:在重复键更新上插入到仅具有插入的 sql 文件?
Is there a way to overwrite or skip duplicate records?
1062 - Duplicate entry '2' for key 1
is there a way to add : insert on duplicate key update to a sql file that only has insert?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 12.2.5.1。 INSERT ... SELECT 语法 和12.2.5。 INSERT 语法
并查找
Have a look at 12.2.5.1. INSERT ... SELECT Syntax and 12.2.5. INSERT Syntax
And look for
尝试这个:
虽然通常人们忘记把id 的自动增量字段以及错误。
try this:
Although usually people forget to put the autoincrement field for the id and thus the error.