We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 10
Weather Observation Station 10
Sort by
recency
|
2128 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE LOWER(RIGHT(CITY,1) NOT IN ('a','e','i','o','u'));
SELECT DISTNICT CITY FROM STATION WHERE NOT(CITY LIKE '%A OR CITY LIKE '%I OR CITY LIKE '%U OR CITY LIKE '%O OR CITY LIKE '%U);
in oracle select distinct city from station where not regexp_like(city,'.*[aeiou]$','i');
MYSQL: SELECT DISTINCT CITY FROM STATION WHERE RIGHT(CITY,1) NOT IN ('a','e','i','o','u');
Oracle SQL: SELECT DISTINCT CITY FROM STATION WHERE 1=1 AND NOT REGEXP_LIKE(CITY,'[AEIOU]$','i')
MS SQL SERVER: