SQL求分组统计后,怎么统计数据

比如有一张表
编号 类型 数量
1 A 2
2 B 4
3 C 6
4 D 2
5 E 5
统计大于2的数据

select  no,type,sum(counts) as counts
from table
where counts>=2
group by no,type

题目表达不明确,没有说到底是什么东西大于2,而且标题中说有分组,但内容里完全看不出哪里有分组
请提供一下,根据你要求生成的结果数据长什么样