Weather Observation Station 10

Sort by

recency

|

2110 Discussions

|

  • + 0 comments

    select distinct city from STATION where RIGHT(city,1) NOT IN ('a','e','i','o','u')

  • + 0 comments

    My SQL select distinct CITY from STATION Where SUBSTR(CITY, LENGTH(CITY), 1) NOT IN ('a','e','i','o','u');

  • + 0 comments

    SELECT DISTINCT city FROM station WHERE city not REGEXP '[aeiouAEIOU]$';

  • + 0 comments

    mysql

    select city from station where right(city,1) not in('a','e','i','o','u') group by city;

  • + 0 comments

    MSSQL

    SELECT DISTINCT CITY FROM STATION WHERE CITY LIKE '%[^a,e,i,o,u]'