From 71dc200c562b9b68766e58c3ab4017ea5da37324 Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 18 May 2019 12:25:03 +0200 Subject: [PATCH] mysql: add weather-observation-station-10 --- mysql/weather-observation-station-10/solution.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mysql/weather-observation-station-10/solution.sql diff --git a/mysql/weather-observation-station-10/solution.sql b/mysql/weather-observation-station-10/solution.sql new file mode 100644 index 0000000..67926e4 --- /dev/null +++ b/mysql/weather-observation-station-10/solution.sql @@ -0,0 +1,3 @@ +SELECT DISTINCT CITY +FROM STATION +WHERE RIGHT(CITY, 1) NOT IN ('a','e','i','o','u') \ No newline at end of file