diff --git a/mysql/asian-population/solution.sql b/mysql/asian-population/solution.sql new file mode 100644 index 0000000..e56c4e1 --- /dev/null +++ b/mysql/asian-population/solution.sql @@ -0,0 +1,4 @@ +SELECT SUM(CITY.POPULATION) +FROM CITY +INNER JOIN COUNTRY ON COUNTRY.CODE = CITY.COUNTRYCODE +WHERE COUNTRY.CONTINENT = 'Asia' \ No newline at end of file