From 340152c71a4d40262ddf7353414523022997d0ff Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 12:08:46 +0200 Subject: [PATCH] mysql: add weather-observation-station-3 --- mysql/weather-observation-station-3/solution.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mysql/weather-observation-station-3/solution.sql diff --git a/mysql/weather-observation-station-3/solution.sql b/mysql/weather-observation-station-3/solution.sql new file mode 100644 index 0000000..396d770 --- /dev/null +++ b/mysql/weather-observation-station-3/solution.sql @@ -0,0 +1,3 @@ +SELECT DISTINCT CITY +FROM STATION +WHERE ID%2 = 0 \ No newline at end of file