oracle用一张表数据更新另一张数据_百度知道
最佳答案: update table1 set num1 = num1 + (select nvl(num2,0) from table2 where table2.id = table1.id)--你看看是不是你要的更多关于Oracle数据库table更新问题的问题>>
oracle 批量更新数据问题_百度知道
[专业]答案:可以通过update方法进行批量修改。 sql:update table_name SET age=25; 备注:也可以添加必要的条件,针对固定条件的数据进行批量修改。 sql:update table_...更多关于Oracle数据库table更新问题的问题>>