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
|
3231 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE LOWER(RIGHT(CITY ,1)) IN ('a','e','i','o','u')
SELECT distinct city from station where city regexp '[aeiou]$';
select distinct city from station where right(city,1) in ("a","e","i","o","u","A","E","I","O","U");
SELECT DISTINCT CITY FROM STATION WHERE LOWER(SUBSTR(CITY,LENGTH(CITY),LENGTH(CITY))) IN('a','e','i','o','u');