如果线上数据库有重复数据,怎么处理?

       最近在公司遇到由于历史数据造成了有重复数据,导致有些操作无法进行,因此需要手动清理掉线上的重复数据,那么首先就是要查出来有哪些是重复的,下面这条sql就是查询重复数据的,而且根据sku把重复数据都显示在一起,这样一目了然。

select t.delivery_scope_id,t.goods_code,t.delivery_scope_group_id,t.priority_level,t.warehouse_name from delivery_scope t where (select count(*) from delivery_scope where is_delete=0 and 
goods_code=t.goods_code and delivery_scope_group_id=t.delivery_scope_group_id and priority_level=t.priority_level)>1 and t.warehouse_id=40595316029788161 ORDER BY t.goods_code;

        知道了重复数据,那么接下来就是调整数据,既然优先级有一样的,那么就把优先级一样的其中一条给加1

update delivery_scope set priority_level=priority_level+1 where delivery_scope_id in (
select * from (
select DISTINCT t.delivery_scope_id from delivery_scope t where 
(select count(*) from delivery_scope where is_delete=0 and goods_code=t.goods_code and delivery_scope_group_id=t.delivery_scope_group_id and priority_level=t.priority_level)>1 
and t.warehouse_id=40595316029788161
) b
);

       

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值