Weather Observation Station 11

  • + 3 comments

    or you can:

    SELECT distinct city 
    FROM station
    where REGEXP_LIKE(UPPER(city),'^[^AEIOU]')
    OR REGEXP_LIKE(UPPER(city),'[^AEIOU]$');