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
|
3942 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')
work for oracle select DISTINCT city from station where not regexp_like(city, '^[AEIOU]+(.)+[aeiou]$');
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 s.CITY FROM STATION s WHERE LEFT(s.city, 1) NOT LIKE '[AEIOUaeiou]%' OR RIGHT(s.city, 1) NOT LIKE '%[AEIOUaeiou]';
SELECT DISTINCT CITY FROM STATION WHERE NOT (CITY LIKE 'A%' OR CITY LIKE 'E%' OR CITY LIKE 'I%' OR CITY LIKE 'O%' OR CITY LIKE 'U%') OR (CITY LIKE '%A' OR CITY LIKE '%E' OR CITY LIKE '%I' OR CITY LIKE '%O' OR CITY LIKE '%U');