-1

我有一个包含 和 列的st_nameid。我需要得到st_name和 Group by的计数st_name。我该怎么做呢?

4

1 回答 1

0
select st_name, 
       count(*) as grp_cnt,
       (select count(distinct st_name) from your_table) as st_cnt
from your_table
group by st_name
于 2013-10-28T11:08:51.093 回答