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
|
2450 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE NOT SUBSTR(CITY,1,1) IN ('A','I','U','E','O') AND NOT SUBSTR(CITY,-1) IN ('A','I','U','E','O');
it nice to see here what are going to be discussed. SELECT DISTINCT CITY FROM STATION WHERE LOWER(LEFT(CITY,1)) NOT IN ('a','e','i','o','u') AND LOWER(RIGHT(CITY,1)) NOT IN ('a','e','i','o','u');
[https://snaplusapk.com] (https://vduapkdl.com)
select distinct city from station where city not regexp '^[aiueo]' and city not regexp '[aiueo]$'
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")