Population Census

Sort by

recency

|

1483 Discussions

|

  • + 0 comments

    select sum(population) from city where countrycode in ( select code from country where continent='asia' );

  • + 0 comments

    select SUM(City.Population) from City Join Country on CITY.CountryCode = COUNTRY.Code where Country.Continent = 'Asia';

  • + 0 comments

    ** MYSQL:-**

    select sum(city.population) from city inner join country on CITY.CountryCode = COUNTRY.Code where CONTINENT='ASIA'

  • + 0 comments

    MYSQL:

    SELECT SUM(CI.Population) FROM City CI JOIN Country CO ON CI.CountryCode = CO.Code WHERE CO.Continent = 'Asia';

  • + 0 comments

    FOR MYSQL select SUM(CITY.POPULATION) FROM CITY INNER JOIN COUNTRY ON CITY.COUNTRYCODE = COUNTRY.CODE AND COUNTRY.CONTINENT='Asia'