34,838
社区成员




Select b,count(*) as 次数 from A group by b
select b , count(*) as 次数
from a
group by b
select b , count(*) 次数 from a group by b
select B, 次数=count(1)
from A
where B between 10 and 120
group by B
select b , count(*) 次数 from a group by b