Searching:
SELECT field, COUNT(field) AS count
FROM table
GROUP BY field
HAVING count > 1
ORDER BY count;
Deleting:
ALTER IGNORE TABLE table ADD UNIQUE INDEX (field);
ALTER TABLE table DROP INDEX field;
select address, count(address) as cnt
from mailing_list
group by address
having cnt > 1
order by cnt;