更新查询不起作用?
这些是我的表格结构
tblcomment
- - - - - - - - - - - - -
评论id
内容_id
用户 ID
图片_id
评论
comment_time
tbl图片
- - - - - - - - - - - - -
内容_id
标题
picture_id
我正在尝试使用此更新图片上的 content_id 字段,但它似乎不起作用?
UPDATE `comments`
SET
comments.content_id = pictures.content_id
WHERE
comments.picture_id = pictures.picture_id
我收到此错误
1054 - “where 子句”中的未知列“pictures.picture_id”
These are my table structures
tblcomment
- - - - - - - - - - - - -
comment_id
content_id
user_id
picture_id
comment
comment_time
tblpictures
- - - - - - - - - - - - -
content_id
title
picture_id
I am trying to update the content_id field on pictures using this but it doesnt seem to work ?
UPDATE `comments`
SET
comments.content_id = pictures.content_id
WHERE
comments.picture_id = pictures.picture_id
I get this error
1054 - Unknown column 'pictures.picture_id' in 'where clause'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新评论、图片集...
UPDATE comments, pictures SET ...