当前位置: 移动技术网 > IT编程>数据库>MSSQL > sql查出一张表中重复的所有记录数据的三种方法

sql查出一张表中重复的所有记录数据的三种方法

2018年12月09日  | 移动技术网IT编程  | 我要评论

卵蛋网邪恶gif出处,城阳灭门,更衣老虎机

查询重复的数据

1.查询出所有数据进行分组之后,和重复数据的重复次数的查询数据,先列下:

select  count(username) as '重复次数',username from xi group by username  having count(*)>1 order by username desc

2.查找表中多余的重复记录,重复记录是根据单个字段(peopleid)来判断

select * from people
where peopleid in (select  peopleid  from  people  group  by  peopleid  having  count(peopleid) > 1)

3.查找表中多余的重复记录(多个字段)

select * from people a
where (a.peopleid,a.seq) in  (select peopleid,seq from people group by peopleid,seq  having count(*) > 1)

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网