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 8
Weather Observation Station 8
Sort by
recency
|
4381 Discussions
|
Please Login in order to post a comment
select distinct city from station where city regexp '^[aeiou]' AND city regexp '[aeiou]$'
select city from station where city like 'a%a' or city like 'e%e' or city like 'i%i' or city like 'o%o' or city like 'u%u'
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%')AND (CITY LIKE '%A' OR CITY LIKE '%E' OR CITY LIKE '%I' OR CITY LIKE '%O'OR CITY LIKE '%U') ;
Correct
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%') AND (LOWER(city) LIKE '%a' OR LOWER(city) LIKE '%e' OR LOWER(city) LIKE '%i' OR LOWER(city) LIKE '%o' OR LOWER(city) LIKE '%u');
SELECT DISTINCT CITY FROM STATION WHERE SUBSTR(CITY,1,1) IN ("a","e","i", "o","u") AND SUBSTR(CITY,-1,1) IN ("a","e","i", "o","u");