Weather Observation Station 8

  • + 0 comments

    with cte1 as ( select id,length(city)as l1 from station ) select distinct city from station s join cte1 as c1 on c1.id=s.id where substr(city,c1.l1,1)in ("a","e","i","o","u") and substr(city,1,1) in ("a","e","i","o","u")