所以我有查詢:SQL從計數中找到平均值?
select states, count(numberofcounty)
from countytable
group by states
order by count(distinct numberofcounty) ASC;
這回2列的表:州,縣的數量的數量從最低到最高。 我怎樣才能得到在一個實數中每個州有多少縣的平均值?
表結構是:
create table numberofcounty(
numberofcounty text,
states text references states(states),
);
create table states (
states text primary key,
name text,
admitted_to_union text
);
你可以發佈你的表結構? –
每個州有多少個國家?不是每個國家有多少個州? – Lion