Population Census

  • + 0 comments
    select
        sum(ct.population)
    from
        country cnt
    left join city ct on cnt.code = ct.countrycode
    where
        cnt.continent = 'Asia';