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
|
2424 Discussions
|
Please Login in order to post a comment
select distinct city from station where not(lower(right(city,1)) in ('a','e','i','o','u')) and not(lower(left(city,1)) in ('a','e','i','o','u'));
why two NOTs, why not in a single NOT because the questions ask to check for both left right and indivdually
SELECT DISTINCT CITY FROM STATION WHERE NOT (LOWER(LEFT (CITY ,1))IN ('a','e','i','o','u')) AND NOT (LOWER (RIGHT(CITY ,1))IN('a','e','i','o','u'));
select distinct city from station where city NOT REGEXP '^[aeiouAEIOU]' and city NOT REGEXP '[aeiouAEIOU]$'