摘要: select id from group by id having count(*) > 1 按照id分组并计数,某个id号那一组的数量超过1条则认为重复。 如何查询重复的数据 select 字段1,字段2,count(*) from 表名 group by 字段1,字段2 having count 阅读全文
posted @ 2017-06-15 18:17 鼎峰Bruce 阅读(9748) 评论(0) 推荐(0) 编辑