You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
124 B
MySQL
4 lines
124 B
MySQL
6 years ago
|
SELECT SUM(CITY.POPULATION)
|
||
|
FROM CITY
|
||
|
INNER JOIN COUNTRY ON COUNTRY.CODE = CITY.COUNTRYCODE
|
||
|
WHERE COUNTRY.CONTINENT = 'Asia'
|