本文共 268 字,大约阅读时间需要 1 分钟。
问题:用一张表的数据更新另外一张表部分字段
解决:
1 2 3 4 5 | update table1 t1 set (t1.col1, t1.col2) = ( select t2.col1, t2.col2 from table2 t2 where t1. key = t2. key ) where t1. key in ( select key from table2); |