Finding Duplicates with SQL

-- this is awesome testimg
SELECT email, COUNT(email) AS NumOccurrences FROM users GROUP BY email HAVING ( COUNT(email) > 1 )

📇 Additional Metadata