Weather Observation Station 8

Sort by

recency

|

4435 Discussions

|

  • + 0 comments

    SELECT distinct CITY FROM STATION WHERE CITY REGEXP '^[AEIOUaeiou].*[AEIOUaeiou]$';

  • + 1 comment

    SELECT DISTINCT CITY FROM STATION WHERE CITY LIKE '[aeiou]%' AND CITY LIKE '%[aeiou]';

    why it is not working?

  • + 0 comments

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

  • + 0 comments

    SELECT DISTINCT city FROM station WHERE city RLIKE '^[aeiou].*[aeiou]$';

  • + 0 comments

    select distinct city from station where left(city,1) in('a','e','i','o','u') and right(city,1) in ('a','e','i','o','u') this will work