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.
Weather Observation Station 7
Weather Observation Station 7
Sort by
recency
|
3182 Discussions
|
Please Login in order to post a comment
select distinct(city) from station where right(city,1) in ('a','e','i','o','u')
SELECT DISTINCT CITY FROM STATION WHERE lower(SUBSTR(CITY,-1,1)) IN ('a','e','i','o','u')
SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP "[AEIOU]$"
select distinct(city) as dist_city from station where right(city,1) in ('a','e','i','o','u')
-- 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');