Find duplicate records in MySQL

后端 未结 23 2850
别跟我提以往
别跟我提以往 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条回答
  •  逝去的感伤
    2020-11-22 00:03

    select `cityname` from `codcities` group by `cityname` having count(*)>=2
    

    This is the similar query you have asked for and its 200% working and easy too. Enjoy!!!

提交回复
热议问题