This article is tagged with:
Sql query to find duplicates in column
and mysql
sql query to find duplicates in column
SELECT name, COUNT(email)
FROM users
GROUP BY email
HAVING COUNT(email) > 1