怎样将Oracle一张表的多个字段更新到另一张表中去

时间:2021-07-30 14:02:12

假设表a中有多个字段(province ,city)需要从b表获取(两张表的mobile一样),总结了几种写法。

 

一、update a  set a.province=(select province from b where b.mobile=a.mobile);

        update a  set a.city=(select cityfrom b where b.mobile=a.mobile);

 

这种写法效率太低,尤其是号码有上万条的时候,所以抛弃。

 

二、update a set a.province=b.province,a.city=b.city from a  inner join b on a.mobile=b.mobile.

      或者update a set a.province=b.province,a.city=b.city from a,b where a.mobile=b.mobile.

 

三、update a inner join b on a.mobile=b.mobile set a.province=b.province,a.city=b.city 

注意:第二种和第三种写法在oracle行不通的,老是报错,折腾了好长时间,最后还是用下面的语句解决了问题

 

四、update a set(a.province,a.city)=(select province,city from b where b.mobile=a.mobile)  

其实第四种方法是第一种方法的合并。

 

项目中写的真实例子:
update m_smsphoneno a set (a.operator,a.province,a.city)=(select  OWNER,STATE,CITY from keyaccount.CELLPHONESORT b where substr(a.mobile,1,7)=b.startcode)  where  a.category=2 and a.city is null;   注:用a.city=null不行的