Weather Observation Station 8

  • + 2 comments

    select distinct city from station where (lower(city) like 'a%' and lower(city) like '%a') or (lower(city) like 'e%' and lower(city) like '%e') or (lower(city) like 'i%' and lower(city) like '%i') or (lower(city) like 'o%' and lower(city) like '%o') or (lower(city) like 'u%' and lower(city) like '%u') order by city; I am getting output but it is displaying that it is wrong