본문 바로가기

Language/SQL

[HackerRank][SQL] Weather Observation Station 6 - 컴도리돌이

728x90
 

Weather Observation Station 6 | HackerRank

Query a list of CITY names beginning with vowels (a, e, i, o, u).

www.hackerrank.com


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 사용법 아래 링크 참고!

 

[MySQL] 정규표현식 검색하기 REGEXP, LIKE

MySQL 정규표현식 활용하여 데이터 검색하기 SQL에서 특정 문자열 조건을 가진 데이터를 검색해야 하는 경우가 종종 있습니다. like는 보다 복잡하고 다양한 문자열 패턴을 검색할 때 쿼리가 상당

codingspooning.tistory.com