MySQL - 替换列值

时间:2014-05-14 18:56:45

标签: mysql sql database

我希望一次更新/替换两个列的值。

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'

两者都不起作用,问题是什么? 任何其他命令?

1 个答案:

答案 0 :(得分:5)

您的id_msgprimary 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);