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
|
4097 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT city FROM station WHERE CITY NOT REGEXP '^[AEIOU].*[AEIOU]$';
SELECT DISTINCT city FROM station WHERE CITY NOT REGEXP '^[AEIOUaeiou]' OR CITY NOT REGEXP '[AEIOUaeiou]$'
select distinct city from station where substr(city,1,1) not in ('a','e','i','o','u') or substr(city,length(city),1) not in ('a','e','i','o','u')
select distinct city from station where not upper(left(city,1)) in ('A','I','E','O','U') AND not upper(right(city,1)) in ('A','I','E','O','U');
why it shows error
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")