SELECT email FROM directory_list GROUP BY email HAVING COUNT(email) >1;
SELECT email FROM directory_list WHERE email LIKE '%@%' GROUP BY email ASC;