如何使用 where 子句的 select 更新字段?
我有表格,其中一个称为“文章”,另一个称为“链接”。
我想从表链接中获取 url 和标题,并使用链接表中的数据更新文章表。我不确定该怎么做。链接表有引用它的article_id,任何人都可以帮忙吗?
这是一些伪代码,如果有帮助的话?
UPDATE articles
SET articles.url,
articles.title = (SELECT links.url,
links.title
FROM links
WHERE articles.id = links.article_id)
这有道理吗?
I have tables, 1 called "articles" and another called "links".
I want to take the url and title from the table links and update the articles table with the data from the links table. I am unsure how to do this. The links table has article_id referenced to it, can anyone help?
Here is some pseudo-code if this helps?
UPDATE articles
SET articles.url,
articles.title = (SELECT links.url,
links.title
FROM links
WHERE articles.id = links.article_id)
Does this make sense?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者
OR