You are viewing a single comment's thread. Return to all comments →
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
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 12
You are viewing a single comment's thread. Return to all comments →
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