Mysql statement to delete duplicate data, retain one; query all duplicate data; query duplicate data, mysql statement

Source: Internet
Author: User

Mysql statement to delete duplicate data, retain one; query all duplicate data; query duplicate data, mysql statement

// Display all duplicate entries

SELECT * FROM Table Name
WHERE (Field 1, Field 2 ,...)
IN (SELECT Field 1, Field 2,... FROM table name group by field 1, Field 2,... having count (*)> 1)

 

// Only one of the duplicates is displayed

SELECT * FROM table name group by concat (Field 1, Field 2,...) having count (*)> 1

 

// Delete duplicate data (retain the least ID)
Delete from Table Name
WHERE (Field 1, Field 2 ,...)
IN (SELECT Field 1, Field 2,... FROM
(SELECT Field 1, Field 2,... FROM table name group by field 1, Field 2,... having count (*)> 1) AS B

)
AND Id not in (SELECT id AS id FROM
(Select min (Id) AS id FROM table name group by field 1, Field 2,... having count (*)> 1) AS c

)

Note: For more details about the statement used to delete duplicate data, you must repeat the from statement to report an error.

Related Article

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.