SELECT email, COUNT(email) FROM contacts GROUP BY email HAVING COUNT(email) > 1; Code language: SQL (Structured Query Language) (sql)