通过一张表的数据去修改另一张表的数据
update table1 set table1.列=table2.列 from table2 where table2.列=table1.列
本文共 133 字,大约阅读时间需要 1 分钟。
通过一张表的数据去修改另一张表的数据
update table1 set table1.列=table2.列 from table2 where table2.列=table1.列
转载于:https://blog.51cto.com/1161384/1312753