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
|
3169 Discussions
|
Please Login in order to post a comment
select distinct city from station where substr(city,-1,1)in('a','e','i','o','u');
SELECT DISTINCT CITY FROM STATION WHERE RIGHT(CITY,1) in ('a', 'e','i','o','u') ;
SELECT DISTINCT [CITY] FROM STATION WHERE [CITY] LIKE '%[aeiou]';
select distinct city from station where city like '%a' or city like '%e' or city like '%i' or city like '%o' or city like '%u';
SELECT DISTINCT(CITY) FROM STATION WHERE SUBSTRING(CITY,-1,1) IN ('a','e','i','o','u')