多表关联批量更新update-
1 update customers a -- 使用别名
2
3 set customer_type='01' --01 为vip,00为普通
4
5 where exists (
6
7 select 1
8
9 from tmp_cust_city b
10
11 where b.customer_id=a.customer_id
12
13 )
两表(多表)关联update
1 update customers a -- 使用别名
2
3 set city_name=(select b.city_name from tmp_cust_city b where b.customer_id=a.customer_id)
4
5 where exists (select 1
6
7 from tmp_cust_city b
8
9 where b.customer_id=a.customer_id
10
11 )
12
13 -- update 超过2个值
14
15 update customers a -- 使用别名
16
17 set (city_name,customer_type)=(
18
19 select
20
21 b.city_name,b.customer_type
22
23 from tmp_cust_city b
24
25 where b.customer_id=a.customer_id)
26
27 where exists (select 1
28
29 from tmp_cust_city b
30
31 where b.customer_id=a.customer_id
32
33 )
注意在这个语句中,
=(select b.city_name,b.customer_type
from tmp_cust_city b
where b.customer_id=a.customer_id
)
与
(select 1
from tmp_cust_city b
where b.customer_id=a.customer_id
)
是两个独立的子查询,查看执行计划可知,对b表/索引扫描了2篇;
如果舍弃where条件,则默认对A表进行全表
更新,但由于(select b.city_name from tmp_cust_city b where where b.customer_id=a.customer_id)
有可能不能提供"足够多"值,因为tmp_cust_city只是一部分客户的信息,
所以报错(如果指定的列--city_name可以为NULL则另当别论)