select address, count(address) as cnt
from mailing_list
group by address
having cnt > 1
order by cnt;
Snippets of MySQL tips, solutions, examples, tutorials, and even benchmarks
select address, count(address) as cnt
from mailing_list
group by address
having cnt > 1
order by cnt;