Oracle下需要使用SQL,将一张条的某些字段的数据更新到另一张表(例如根据id一致来筛选) 例如: 有两张表,table1和table2,根据table1和table2的ID相同的记录,把table2的name和desc字段的数据更新到table1,SQL如下: MERGE INTO table1 t1 USING ( -- For more complicated queries you can use WITH clause here SELECT * FROM table2 ) t2 ON(t1.id =…