查询表里边id为16的content然后,更新id大于16的content为查出来的content
1.使用sql只查询一次
2.我自己的sql:
UPDATE guideline_news
SET content = (
SELECT
content
FROM
guideline_news
WHERE
id = 16
)
WHERE
id > 16
备注:
这个sql报错:[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'SELECT content FROM guideline_news WHERE id=16 WHERE id>16' at line 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
update guideline_news set content =(select content from (select * from guideline_news) a where a.id = 16) where id>16;