Methods for querying duplicate records in a database

Source: Internet
Author: User

Select *  from [DataBase].[dbo].[TableName]  where [Field One] inch(Select [Field One]  from [DataBase].[dbo].[TableName]  Group  by [Field One]  having Count([Field One])> 1)

1, look for redundant records in the table, duplicate records are based on a single field (Peopleid) to determine

Select *  from  where in (selectfrom    Group by   having Count > 1)

2, delete redundant records in the table, duplicate records are based on a single field (Peopleid) to judge, leaving only the smallest ROWID records
Delete  frompeoplewherePeopleidinch(SelectPeopleid fromPeopleGroup  byPeopleid having Count(Peopleid)> 1)  androwID not inch(Select min(ROWID) fromPeopleGroup  byPeopleid having Count(Peopleid)>1)

3. Find redundant duplicate records (multiple fields) in the table
Select *  from  wherein  (theselectfromgroupby has  Count(*>1)

4. Delete extra duplicate records (multiple fields) in the table, leaving only the record with ROWID minimum
Delete  fromVitae awhere(A.PEOPLEID,A.SEQ)inch(SelectPeopleid,seq fromVitaeGroup  byPeopleid,seq having  Count(*)> 1)  androwID not inch(Select min(ROWID) fromVitaeGroup  byPeopleid,seq having Count(*)>1)

5. Find redundant duplicate records (multiple fields) in the table, not including the smallest ROWID records
Select *  fromVitae awhere(A.PEOPLEID,A.SEQ)inch(SelectPeopleid,seq fromVitaeGroup  byPeopleid,seq having  Count(*)> 1)  androwID not inch(Select min(ROWID) fromVitaeGroup  byPeopleid,seq having Count(*)>1)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.