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 12
Weather Observation Station 12
Sort by
recency
|
2411 Discussions
|
Please Login in order to post a comment
select distinct city from station where city NOT REGEXP '^[aeiouAEIOU].$' and city NOT REGEXP'^.[aeiouAEIOU]$'
SELECT DISTINCT CITY FROM STATION WHERE UPPER(SUBSTR(CITY, 1, 1)) NOT IN ('A', 'E', 'I', 'O', 'U') AND UPPER(SUBSTR(CITY, LENGTH(CITY), 1)) NOT IN ('A', 'E', 'I', 'O', 'U');
select distinct city from station where city not like 'A%' and city not like 'E%' and city not like 'I%' and city not like 'O%' and city not like 'U%' and city not like '%a' and city not like '%e' and city not like '%i' and city not like '%o' and city not like '%u';
select distinct city from station where left(city,1)not in ('a','e','i','o','u') and right(city,1)not in ('a','e','i','o','u')
select distinct city from station where regexp_like (city,'^[^AEIOU aeiou]') and regexp_like (city, '[^AEIOU aeiou]$');