Home >Database >Mysql Tutorial >How Can I Efficiently Extract Duplicate Records with Full Details from MySQL?

How Can I Efficiently Extract Duplicate Records with Full Details from MySQL?

DDD
DDDOriginal
2024-12-15 12:23:09550browse

How Can I Efficiently Extract Duplicate Records with Full Details from MySQL?

Extracting Duplicate Records with Detailed Information from MySQL

To retrieve duplicate records from a MySQL database while preserving individual row details, you can use a modified query that combines a subquery to identify duplicate addresses:

SELECT firstname,
       lastname,
       address
FROM list
INNER JOIN (
    SELECT address
    FROM   list
    GROUP  BY address
    HAVING COUNT(id) > 1
) dup
ON list.address = dup.address;

By incorporating the subquery that identifies duplicate addresses into the main query, it is possible to display both the first name, last name, and address for each duplicate record. This approach eliminates the need for a secondary query to retrieve the details of duplicate records and provides a complete list in a single query.

The above is the detailed content of How Can I Efficiently Extract Duplicate Records with Full Details from MySQL?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn