数据库
首页 > 数据库> > SQL:大表多表更新的两种方法

SQL:大表多表更新的两种方法

作者:互联网

#标记不参与计算的明细(跨平台的或is_end=2)
#跨平台订单:暂不处理

 

说明:大表即order_list_wx,几十万,需要根据小表(order_list_zfb ,几万)来做更新,查出两个平台都有订单号(因为程序BUG所导致的)。


@Run.ExecuteSql("标记跨平台订单",@"
update bi_data.order_list_wx a
set is_end='2'
where exists (select 1 from bi_data.order_list_zfb b where a.商户订单号=b.商户订单号)
and is_end='0'
")

 

@Run.ExecuteSql("标记跨平台订单",@"
update bi_data.order_list_wx a
join bi_data.order_list_zfb b on a.商户订单号=b.商户订单号
set a.is_end='2'
where a.is_end='0'
")

标签:end,大表多表,list,订单号,更新,bi,跨平台,SQL,order
来源: https://www.cnblogs.com/xiaoyongdata/p/15717952.html