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
|
3955 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[^AEIOUaeiou]' OR CITY REGEXP'[^AEIOUaeiou]$';
SELECT DISTINCT CITY FROM STATION WHERE NOT LEFT(CITY,1) IN('A','E','I','O','U') OR NOT RIGHT(CITY,1) IN('A','E','I','O','U');
select distinct city from station where city not like '%[aeiou]' or city not like '[aeiou]%'
select distinct(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 REGEXP '^[aeiou]' OR CITY NOT REGEXP '[aeiou]$';