From 714968c0d67bb87f7950001ad065f3075a46b1be Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 13:25:16 +0200 Subject: [PATCH] mysql: add asian-population --- mysql/asian-population/solution.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mysql/asian-population/solution.sql 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