Duplicate possible:
Trouver les enregistrements en double dans MySQL
J'ai une table dans MySQL comme ceci:
ID name email
1 john [email protected]
2 johnny [email protected]
3 jim [email protected]
4 Michael [email protected]
Comment puis-je avoir la requête MySQL qui listera le doublon comme ceci?
Résultat de la recherche en double:
ID name email Duplicate
1 john [email protected] 2
2 johnny [email protected] 2
SELECT a.*, b.totalCount AS Duplicate
FROM tablename a
INNER JOIN
(
SELECT email, COUNT(*) totalCount
FROM tableName
GROUP BY email
) b ON a.email = b.email
WHERE b.totalCount >= 2
pour de meilleures performances, ajoutez une INDEX
à la colonne EMail
.
OR
SELECT a.*, b.totalCount AS Duplicate
FROM tablename a
INNER JOIN
(
SELECT email, COUNT(*) totalCount
FROM tableName
GROUP BY email
HAVING COUNT(*) >= 2
) b ON a.email = b.email
Si vous pouvez vivre avec l'ID et le nom dans des listes séparées par des virgules, vous pouvez alors essayer
select email, count(*) as numdups,
group_concat(id order by id), group_concat(name order by id)
from t
group by email
having count(*) > 1
Cela enregistre une jointure, bien que le résultat ne soit pas dans un format relationnel.
Consultez cet article sur le forums MySQL , qui donne les informations suivantes:
SELECT t1.id, t1.name, t1.email FROM t1 INNER JOIN (
SELECT colA,colB,COUNT(*) FROM t1 GROUP BY colA,colB HAVING COUNT(*)>1) as t2
ON t1.email = t2.email;