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 12
Weather Observation Station 12
Sort by
recency
|
2415 Discussions
|
Please Login in order to post a comment
select distinct city from station where lower(left(city,1)) not in ('a','e','o','u','i') and lower(right(city,1)) not in ('a','e','o','i','u');
MS SQL
SELECT DISTINCT CITY FROM STATION WHERE LOWER(LEFT(CITY, 1)) NOT IN ('a', 'e', 'i', 'o', 'u') AND LOWER(RIGHT(CITY, 1)) NOT IN ('a', 'e', 'i', 'o', 'u');
select distinct(city) as dist_city from station where right(city,1) not in ('a','e','i','o','u') and left(city,1) not in ('a','e','i','o','u')
select distinct city from station where city NOT REGEXP '^[aeiouAEIOU].$' and city NOT REGEXP'^.[aeiouAEIOU]$'