From e86ffe9d4c8644051a7c7f2cd41629dee98b045f Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 13:26:27 +0200 Subject: [PATCH] mysql: add african-cities --- mysql/african-cities/solution.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mysql/african-cities/solution.sql diff --git a/mysql/african-cities/solution.sql b/mysql/african-cities/solution.sql new file mode 100644 index 0000000..8e08b39 --- /dev/null +++ b/mysql/african-cities/solution.sql @@ -0,0 +1,4 @@ +SELECT CITY.NAME +FROM CITY +INNER JOIN COUNTRY ON COUNTRY.CODE = CITY.COUNTRYCODE +WHERE COUNTRY.CONTINENT = 'Africa' \ No newline at end of file