很多场景我们需要依据两个表的某个字段进行关联更新。

  select * from table1  t1;

【 DB_Oracle】Oracle多表关联更新

  select * from table2  t2;

【 DB_Oracle】Oracle多表关联更新

现需求:参照table2表修改table1表,修改条件为两表的fname列内容一致。

常见陷阱:update table1 t1 set t1.fmoney = (select  t2.fmoney from table2 t2 where  t2.fname = t1.fname)

执行后table1 结果如下:

【 DB_Oracle】Oracle多表关联更新

  有一行原有值,被更新成空值了。

正确写法:

update table1 t1 set t1.fmoney = (select t2.fmoney from table2 t2 where t2.fname = t1.fname) where exists(select 1 from table2 t2 where t2.fname = t1.fname);

【 DB_Oracle】Oracle多表关联更新

SQL模板:

update table1 t1 set t1.c= (select t2.c from table2 t2 where t1.a=t2.a) WHERE EXISTS(SELECT 1 FROM table2 t2 WHERE t2.a = t1.a);

当在t1.a=t2.a的条件下t2查询出多条记录时也会报错,此时可以考虑将t2.c唯一化。常用的如下两种方法

法一:取满足条件的t2.c的最值

update table1 t1 set t1.c = (select max(t2.c) from table2  t2 where t1.a=t2.a) where exists(select 1 from table2 t2 where t2.a = t1.a);

法二:取满足条件第一行的t2.c值

update table1 t1 set t1.c = (select t2.c  from table2  t2 where t1.a=t2.a  and rownum =1) where exists(select 1 from table2 t2 where t2.a = t1.a);

参考博文:ORACLE 两表关联更新三种方式

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-21
  • 2021-09-19
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
猜你喜欢
  • 2021-06-07
  • 2021-12-10
  • 2021-11-04
  • 2022-02-19
  • 2022-02-18
相关资源
相似解决方案