Postgres find Duplicate items in same table Edit Fork equivalent Web Development October 21, 2024 Public PostgreSQL SELECT email, COUNT(email) FROM customers GROUP BY email HAVING COUNT(email) > 1 limit 10;