#标记不参与计算的明细(跨平台的或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'
")