Weather Observation Station 12

  • + 0 comments

    select distinct city from station where regexp_like(city, '^[^aeiou].*[^aeiou]$','i') order by city;

    the 'i' in the regexp_like means case insensitive so no need to write them twice.