You are viewing a single comment's thread. Return to all comments →
SELECT SUM(CITY.POPULATION) FROM CITY JOIN COUNTRY on CITY.CountryCode = COUNTRY.Code where country.continent = 'Asia';
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Population Census
You are viewing a single comment's thread. Return to all comments →
SELECT SUM(CITY.POPULATION) FROM CITY JOIN COUNTRY on CITY.CountryCode = COUNTRY.Code where country.continent = 'Asia';