You are viewing a single comment's thread. Return to all comments →
-- query the list of city names from station which have vowels a,i,o, and u as both first and last
SELECT DISTINCT(CITY)
FROM STATION
WHERE LOWER(LEFT(CITY, 1)) IN ('a','i','u','e','o') AND LOWER(RIGHT(CITY, 1)) IN ('a','i','u','e','o');
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 8
You are viewing a single comment's thread. Return to all comments →
-- query the list of city names from station which have vowels a,i,o, and u as both first and last
SELECT DISTINCT(CITY)
FROM STATION