mysql 将一张表的数据更新到另外一张表中

方式一:update 更新表 set 字段 = (select 参考数据 from 参考表 where  更新表.id = 参考表.id)

例如: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

例如:update a,b set a.aaa = b.aaa,a.bbb = b.bbb where a.id = b.id;

mysql 将一张表的数据更新到另外一张表中

上一篇:Django在根据models生成数据库表时报 __init__() missing 1 required positional argument: 'on_delete'


下一篇:mysql修改root密码和设置权限