oracle怎么用一个表的多个字段数据更新另一个表相应的字段中

如题所述

update ta set (c1,c2,c3) =
(select c1,c2,c3 from tb where ta.id = tb.id)
where exists(select 1 from tb.id = ta.id)

温馨提示:答案为网友推荐,仅供参考
相似回答