当两个字段匹配时,MySQL 查询用另一个字段的数据更新一个字段
每当两个单独的字段(每个表一个)匹配时,我需要用表中另一个字段的内容更新表中一个数据字段的内容。我一直在尝试这种语法,但我无法让它正常工作而不给我一个错误。
UPDATE table1
SET field1 = table2.field1
FROM Table1,Table2
WHERE Table1.entry = Table2.entry
I need to update the content of one data field in a table with the content of another field in a table every time two separate fields, one on each table, match up. I've been trying this syntax but I just can't get it to work properly without giving me an error.
UPDATE table1
SET field1 = table2.field1
FROM Table1,Table2
WHERE Table1.entry = Table2.entry
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
update ... from
是sql server 的语法。在 MySQL 中,您可以直接使用多个表:所有内容均在 MySQL 更新中详细介绍 参考页面。
update ... from
is sql server's syntax. In MySQL you can just use multiple tables directly:All is detailed on the MySQL update reference page.