如:1 102 103 54 35 5中有两个10,两个5,一个
select count * from (select count(第一列) as t from table group by 第二列) where t > 1
第一列和第二列分别是什么?我这个就是一列啊
select [第二列],count(*) from [表] group by [第二列]