Find duplicate records in MySQL

后端 未结 23 3200
别跟我提以往
别跟我提以往 2020-11-21 23:12

I want to pull out duplicate records in a MySQL Database. This can be done with:

SELECT address, count(id) as cnt FROM list
GROUP BY address HAVING cnt >         


        
23条回答
  •  萌比男神i
    2020-11-22 00:05

    SELECT t.*,(select count(*) from city as tt where tt.name=t.name) as count FROM `city` as t where (select count(*) from city as tt where tt.name=t.name) > 1 order by count desc
    

    Replace city with your Table. Replace name with your field name

提交回复
热议问题