Weather Observation Station 12

Sort by

recency

|

2447 Discussions

|

  • + 0 comments

    select distinct city from station where city not regexp '^[aiueo]' and city not regexp '[aiueo]$'

  • + 0 comments

    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")

  • + 0 comments

    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'));

  • + 0 comments

    select distinct city from station where city not regexp '^[aiueo]' and city not regexp '[aiueo]$'

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE LOWER(LEFT(CITY,1)) NOT IN ('a','e','i','o','u') AND LOWER(RIGHT(CITY,1)) NOT IN ('a','e','i','o','u');