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 11
Weather Observation Station 11
Sort by
recency
|
4105 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT(CITY) FROM STATION WHERE LEFT(CITY,1) NOT IN ('A','E','I','O','U') OR RIGHT(CITY,1) NOT IN ('A','E','I','O','U');
SELECT DISTINCT CITY FROM STATION WHERE NOT (SUBSTR(CITY,1,1) IN ('A','I','U','E','O') AND SUBSTR(CITY,-1) IN ('A','I','U','E','O'));
what,s wrong with this query SELECT DISTINCT CITY FROM STATION WHERE LOWER(city) NOT LIKE '%a' AND LOWER(city) NOT LIKE '%e' AND LOWER(city) NOT LIKE '%i' AND LOWER(city) NOT LIKE '%o' AND LOWER(city) NOT LIKE '%u' AND LOWER(city) NOT LIKE 'a%' AND LOWER(city) NOT LIKE 'e%' AND LOWER(city) NOT LIKE 'i%' AND LOWER(city) NOT LIKE 'o%' AND LOWER(city) NOT LIKE 'u%' ORDER BY city;