Doublons dans une table
select email , count(email) AS nb
from utilisateurs
group by email having count(email) > 1
order by count(email) desc
Categories: Non classé
select email , count(email) AS nb
from utilisateurs
group by email having count(email) > 1
order by count(email) desc