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')

(문제 출처 - https://www.hackerrank.com/domains/sql)

+ Recent posts