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
|
2323 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE CITY NOT REGEXP '^[AEIOU]' AND CITY NOT REGEXP '[AEIOU]$';
select distinct(city) from station where city regexp "^[^aeiou].*[^aeiou]$";
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');
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');
MYSQL
SELECT DISTINCT CITY FROM Station WHERE SUBSTR(LOWER(CITY), 1, 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(LOWER(CITY), LENGTH(city), 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(UPPER(CITY), 1, 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(UPPER(CITY), LENGTH(city), 1) NOT IN ('a', 'e', 'i', 'o', 'u');