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 6
Weather Observation Station 6
Sort by
recency
|
4971 Discussions
|
Please Login in order to post a comment
SELECT DISTINCT CITY FROM STATION WHERE CITY LIKE 'A%' OR CITY LIKE 'E%' OR CITY LIKE 'I%' OR CITY LIKE 'O%' OR CITY LIKE 'U%';
SELECT DISTINCT CITY FROM STATION WHERE LOWER(CITY) LIKE 'a%' OR LOWER(CITY) LIKE 'e%' OR LOWER(CITY) LIKE 'i%' OR LOWER(CITY) LIKE 'o%' OR LOWER(CITY) LIKE 'u%';
FOLLOW THIS ONE
SELECT DISTINCT CITY FROM STATION WHERE LOWER(SUBSTR(CITY,1,1)) = 'a' OR LOWER(SUBSTR(CITY,1,1)) = 'e' OR LOWER(SUBSTR(CITY,1,1)) = 'i' OR LOWER(SUBSTR(CITY,1,1)) = 'o' OR LOWER(SUBSTR(CITY,1,1)) = 'u';
SELECT DISTINCT city FROM station WHERE LEFT(city,1) IN ('a','e','i','o','u') ;
SELECT DISTINCT(CITY) FROM STATION WHERE lower(LEFT(CITY,1)) IN ('a','e','i','o','u');