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