sql去重3

        
        
-- 功能概述:删除重复记录 1 、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断 select * from people where peopleId in ( select peopleId from people group by peopleId having count (peopleId) > 1 ) 2 、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录 delete from people where peopleId in ( select peopleId from people group by peopleId having count (peopleId) > 1 ) and rowid not in ( select min (rowid) from people group by peopleId having count (peopleId ) > 1 ) 3 、查找表中多余的重复记录(多个字段) select * from vitae a where (a.peopleId,a.seq) in ( select peopleId,seq from vitae group by peopleId,seq having count ( * ) > 1 ) 4 、删除表中多余的重复记录(多个字段),只留有rowid最小的记录 delete from vitae a where (a.peopleId,a.seq) in ( select peopleId,seq from vitae group by peopleId,seq having count ( * ) > 1 ) and rowid not in ( select min (rowid) from vitae group by peopleId,seq having count ( * ) > 1 ) 5 、查找表中多余的重复记录(多个字段),不包含rowid最小的记录 select * from vitae a where (a.peopleId,a.seq) in ( select peopleId,seq from vitae group by peopleId,seq having count ( * ) > 1 ) and rowid not in ( select min (rowid) from vitae group by peopleId,seq having count ( * ) > 1 ) 比方说在A表中存在一个字段“name”,而且不同记录之间的“name”值有可能会相同, 现在就是需要查询出在该表中的各记录之间,“name”值存在重复的项; Select Name, Count ( * ) From A Group By Name Having Count ( * ) > 1 如果还查性别也相同大则如下: Select Name,sex, Count ( * ) From A Group By Name,sex Having Count ( * ) > 1
 --方法1:
select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name
--方法2:
select a.* from tb a where not exists(select 1 from tb where name = a.name and val < a.val)
--方法3:
select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name
--方法4:
select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name
--方法5
select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val < a.val) order by
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值