find duplicate records


/ Published in: MySQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. select address, count(address) as cnt
  2. from mailing_list
  3. group by address
  4. having cnt > 1

Report this snippet


Comments


You need to login to view comments.