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 * FROM users u where rowid = (select max(rowid) from users u1 where u.email=u1.email);