SQL SEVER查询一列中分别有多少个重复项的sql语句

如:1 10
2 10
3 5
4 3
5 5
中有两个10,两个5,一个

 select count * from (select count(第一列) as t from table group by 第二列) where t > 1

第一列和第二列分别是什么?我这个就是一列啊

select [第二列],count(*) from [表] group by [第二列]