我希望一次更新/替换两个列的值。
UPDATE table_messages SET id_msg = 4, numbers_msg = 50;
和
INSERT INTO table_messages (number_msg, id_msg) VALUES (50, 4);
mysql说:#1062 - 重复录入' 4'关键' PRIMARY'
两者都不起作用,问题是什么? 任何其他命令?
答案 0 :(得分:5)
您的id_msg
因primary key
而无法复制。您可能只想更新numbers_msg
。
UPDATE table_messages SET numbers_msg = 50 WHERE id_msg = 4 ;
或者:
删除旧的id_msg = 4,然后使用您的查询。
INSERT INTO table_messages (number_msg, id_msg) VALUES (50, 4);