From 288e4826f7c8c39e39174a0cf6b52f5e1b92ece4 Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 12:02:44 +0200 Subject: [PATCH] mysql: add japanese-cities-attributes --- mysql/japanese-cities-attributes/solution.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mysql/japanese-cities-attributes/solution.sql diff --git a/mysql/japanese-cities-attributes/solution.sql b/mysql/japanese-cities-attributes/solution.sql new file mode 100644 index 0000000..10ce3b6 --- /dev/null +++ b/mysql/japanese-cities-attributes/solution.sql @@ -0,0 +1,3 @@ +SELECT ID, NAME, COUNTRYCODE, DISTRICT, POPULATION +FROM CITY +WHERE COUNTRYCODE = 'JPN' \ No newline at end of file