Oracle并行更新的两种方式(merge/update内联视图)

对于Oracle的两表联合更新的场景(有A、B两表,以A.id=B.id关联,根据B表中的记录更新A表中的相应字段),通常有update内联视图和merge两种方式,下面举例介绍:post   建立用例表:测试 create table test1(id number(10),name varchar2(20));大数据 create table test2(id number(10),name
相关文章
相关标签/搜索