For full rows, you can use this query:
select * from table where email in (
select email from table
group by email having count(*) > 1
)
If you want a list of email addresses and how many times they're used, with the most used addresses first. Then use the query given below:
SELECT email,
count(*) AS c
FROM TABLE
GROUP BY email
HAVING c > 1
ORDER BY c DESC