方法一
update 更新表 set 字段 = (select 参考数据 from 参考表 where 更新表.id = 参考表.id)文章来源:https://www.toymoban.com/news/detail-693433.html
update a set aaa = (select aaa from b where a.id = b.id),bbb = (select bbb from b where a.id = b.id)
方法二
update 更新表,参考表 set 更新表数据 = 参考表数据 where 更新表.id = 参考表.id文章来源地址https://www.toymoban.com/news/detail-693433.html
update a,b set a.aaa = b.aaa,a.bbb = b.bbb where a.id = b.id;
到了这里,关于将一张表的数据更新到另外一张表中的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!