Weather Observation Station 7

Sort by

recency

|

3182 Discussions

|

  • + 0 comments

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

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE lower(SUBSTR(CITY,-1,1)) IN ('a','e','i','o','u')

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP "[AEIOU]$"

  • + 0 comments

    select distinct(city) as dist_city from station where right(city,1) in ('a','e','i','o','u')

  • + 0 comments

    -- Query the list of City names ending with vowels(a,i,u,e,o) FROM STATION -- the process is similar like before with starting vowels LEFT but use right and filter to one alphabec to produce the result wanted

    SELECT DISTINCT(CITY)

    FROM STATION

    WHERE LOWER(RIGHT(CITY, 1)) IN ('a','i','u','e','o');