It\'s easy to find duplicates with one field:
SELECT name, COUNT(email) FROM users GROUP BY email HAVING COUNT(email) > 1
So if we have
Try this:
SELECT name, email FROM users GROUP BY name, email HAVING ( COUNT(*) > 1 )