DB_OracleOracle多表关联更新

Posted 咱村唯一的架构师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了 DB_OracleOracle多表关联更新相关的知识,希望对你有一定的参考价值。

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

  select * from table1  t1;

  select * from table2  t2;

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

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

执行后table1 结果如下:

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

正确写法:

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);

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 两表关联更新三种方式

以上是关于 DB_OracleOracle多表关联更新的主要内容,如果未能解决你的问题,请参考以下文章

关于oracle 多表关联更新的问题

mysql多表关联更新

SQl update 多表关联 问题

SQL多表关联更新

多表关联更新sql

Oracle 多表关联更新