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
select id,name,COUNT(*) from user group by Id,Name having COUNT(*)>1