SQl重复记录查询的几种方法
Posted 何校萍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQl重复记录查询的几种方法相关的知识,希望对你有一定的参考价值。
1、查找表中重复记录,根据单个字段来判断
Select * from tableA where peopleId in(select peopleId from tableA group by peopleI having count (peopleId)>1)
2、查找表中重复记录,根据多个字段判断
Select * from tableA as A where (A.peopleId,A.sew) in (select peopleId,seq from tableA group by peopleI,seq having count (*)>1)
以上是关于SQl重复记录查询的几种方法的主要内容,如果未能解决你的问题,请参考以下文章