We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
-- Query the list of City names ending with vowels(a,i,u,e,o) FROM STATION
-- the process is similar like before with starting vowels LEFT but use right and filter to one alphabec to produce the result wanted
SELECT DISTINCT(CITY)
FROM STATION
WHERE LOWER(RIGHT(CITY, 1)) IN ('a','i','u','e','o');
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 7
You are viewing a single comment's thread. Return to all comments →
-- Query the list of City names ending with vowels(a,i,u,e,o) FROM STATION -- the process is similar like before with starting vowels LEFT but use right and filter to one alphabec to produce the result wanted
SELECT DISTINCT(CITY)
FROM STATION
WHERE LOWER(RIGHT(CITY, 1)) IN ('a','i','u','e','o');