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
|
2242 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE NOT REGEXP_LIKE (lower(city),'^(a|e|i|o|u)');
"This is a helpful exercise for learning how to filter and refine query results in SQL. Funinexchange247 Login Registration
select distinct CITY from STATION where not right(CITY, 1) in ('a','e','i','o','u');
SELECT DISTINCT CITY FROM STATION WHERE LOWER(RIGHT(CITY,1)) NOT IN ('a','e','i','o','u');