Weather Observation Station 12

  • + 0 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