Weather Observation Station 7

Sort by

recency

|

3169 Discussions

|

  • + 0 comments

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

  • + 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 [CITY] LIKE '%[aeiou]';

  • + 0 comments

    select distinct city from station where city like '%a' or city like '%e' or city like '%i' or city like '%o' or city like '%u';

  • + 1 comment

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