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
|
2259 Discussions
|
Please Login in order to post a comment
query is correct if your testcase is failed then run it again
SELECT Distinct city from STATION where RIGHT(city,1) NOT IN ('a','e','i','o','u');
SELECT DISTINCT CITY FROM STATION WHERE RIGHT(CITY, 1) NOT IN ('A','E','I','O','U')
SELECT DISTINCT CITY FROM STATION WHERE UPPER(SUBSTR(CITY, LENGTH(CITY), 1)) NOT IN ('A','E','I','O','U');
MySQL - SELECT DISTINCT(city) FROM station WHERE city REGEXP '[^aeiou]$'