Weather Observation Station 12

  • + 0 comments

    Any of the query can be used

    select distinct city from station where left(city,1) not in ('a','e','i','o','u') and right(city,1) not in ('a','e','i','o','u');

    select distinct city from station where city regexp '^[^aeiou]' and city regexp '[^aeiou]$';