Oracle 更新一张表中某个字段等于另一张表中的某个字段

来源:互联网 发布:windows phone8.1更新 编辑:程序博客网 时间:2024/05/01 22:42
  merge into  a
  using  b
  on (a.XXX=b.XXX)
  when matched then update set a.YYY=b.yyy;
0 0