oracle 多表关联更新,需要更新的字段在另一个表里

  • Post author:
  • Post category:其他




两表(多表)关联


update




— 被修改值由另一个表运算而来


update


customers a


— 使用别名


set


city_name=(


select


b.city_name


from


tmp_cust_city b


where


b.customer_id=a.customer_id)


where


exists (


select


1


from


tmp_cust_city b


where


b.customer_id=a.customer_id


)




— update 超过2个值


update


customers a


— 使用别名


set


(city_name,customer_type)=(


select


b.city_name,b.customer_type


from


tmp_cust_city b


where


b.customer_id=a.customer_id)


where


exists (


select


1


from


tmp_cust_city b



where

b.customer_id=a.customer_id


)



版权声明:本文为fy573060627原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。