You are viewing a single comment's thread. Return to all comments →
select sum(population) from (select count(population) as population from CITY where population > 100000 group by population) as citypopulation
Seems like cookies are disabled on this browser, please enable them to open this website
Revising Aggregations - The Count Function
You are viewing a single comment's thread. Return to all comments →
select sum(population) from (select count(population) as population from CITY where population > 100000 group by population) as citypopulation