gpt4 book ai didi

mysql - 从另一个表列值更新列

转载 作者:行者123 更新时间:2023-11-29 05:08:16 26 4
gpt4 key购买 nike

我正在尝试从 comment_users 表 user_id 列值更新 comments 表上的 user_id 列,其中 comment_id 与 comments 表 id 列匹配。

comment_users 表

id: 5 comment_id: 1, user_id: 20

评论表
之前

id:1 user_id: NULL

之后

id: 1 user_id: 20

我在下面执行了 sql,但它不起作用。

UPDATE comments
SET user_id = comment_users.user_id
INNER JOIN comment_users ON comment_users.comment_id = comments.id
WHERE comment_users.comment_id = comments.id


Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNER JOIN comment_users ON comment_users.comment_id = comment' at line 3: UPDATE comments
SET user_id = comment_users.user_id
INNER JOIN comment_users ON comment_users.comment_id = comments.id
WHERE comment_users.comment_id = comments.id

我不知道哪里出了问题。

最佳答案

您的 update join 语法错误,请尝试以下操作:

UPDATE comments
INNER JOIN comment_users ON comment_users.comment_id = comments.id
SET comments.user_id = comment_users.user_id

关于mysql - 从另一个表列值更新列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44365547/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com