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 11
Weather Observation Station 11
Sort by
recency
|
4041 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE LEFT(CITY, 1) NOT IN ('A', 'E', 'I', 'O', 'U') OR 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') or left(city,1) not in ('a','e','i','o','u')
select distinct(city)from station where city not like 'a%'and city not like 'e%' and city not like 'i%' and city not like'o%' and city not like 'u%' or city not like '%a'and city not like '%e' and city not like '%i' and city not like'%o' and city not like '%u' ;
select distinct city from station where city not regexp '^[aeiou].*[aeiou]$';
select distinct city from station where LOWER(LEFT(CITY,1)) NOT IN ('a','e','i','o','u') or LOWER(RIGHT(CITY,1)) NOT IN ('a','e','i','o','u');