id
1
1
2
3
4
4
5
6
比如表是这样的
期望查询结果
id count
1 2
2 1
3 1
只想要 1 2 3 分别出现的次数
如果想要前三个,可以这样写:
select id, count(*) as cnt from tb group by id limit 3
如果想要的是id等于1、2、3的,可以这样写
select id, count(*) as cnt from tb where id in (1,2,3) group by id