problem:
finding the duplicate within sql

solution:
provide table named subscriber, with elements: email

SELECT COUNT(DISTINCT email) AS NumberOfEmail, email FROM subscriber GROUP BY email HAVING (COUNT(email) > 1)