728x90
Problem
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates.
-> station에서 모음(예: a, e, i, o, u)으로 시작하는 city를 중복 없이 출력하시오.
Answer
select distinct(city)
from station
where city regexp "^[aeiou]" -- ^는 앞글자 단어가 [aeiou] 중에 시작하는 것
* regexp 사용법 아래 링크 참고!
'Language > SQL' 카테고리의 다른 글
[HackerRank][SQL] Weather Observation Station 8 - 컴도리돌이 (0) | 2022.05.18 |
---|---|
[HackerRank][SQL] Weather Observation Station 7 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 5 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 4 - 컴도리돌이 (0) | 2022.05.18 |
[HackerRank][SQL] Weather Observation Station 3 - 컴도리돌이 (0) | 2022.05.18 |