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
|
2300 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') and right(city,1) not in ('a','e','i','o','u')
For MySQL
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 city regexp '^[^aeiou].*[^aeiou]$'
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')