- Published on
Hackerrank - Population Census solution
- Authors
- Name
- Imran Pollob
- Website
- @pollmix
Solution one:
select sum(city.population) from city left join country on city.countrycode = country.code where continent = 'asia';
select sum(city.population) from city left join country on city.countrycode = country.code where continent = 'asia';