Weather Observation Station 11

Sort by

recency

|

3955 Discussions

|

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[^AEIOUaeiou]' OR CITY REGEXP'[^AEIOUaeiou]$';

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE NOT LEFT(CITY,1) IN('A','E','I','O','U') OR NOT RIGHT(CITY,1) IN('A','E','I','O','U');

  • + 0 comments

    select distinct city from station where city not like '%[aeiou]' or city not like '[aeiou]%'

  • + 0 comments

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

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY NOT REGEXP '^[aeiou]' OR CITY NOT REGEXP '[aeiou]$';