본문 바로가기
Algorithm & SQL/SQL

Weather Observation Station 8 (regexp 사용)

by YoonJong 2022. 6. 7.
728x90

시작글자와 끝 글자가 a,e,i,o,u 로 되어있는 city 이름을 출력하는 문제이다

 

다른 블로그를 보니 정규식으로 풀면 더 간단하게 풀 수 있는걸 봐서,

참고해서 풀었다.

 

 regexp'^[ 특정문자 ]'  => 특정문자로 시작할 때 사용

 regexp'[ 특정문자 ]$' => 특정문자로 끝날 때 사용

 

 

 

정답 : select city from station

where city regexp '^[aeiou]' and city regexp '[aeiou]$';
       
       

 

 

 

728x90

'Algorithm & SQL > SQL' 카테고리의 다른 글

Weather Observation Station 10  (0) 2022.06.09
Weather Observation Station 9  (0) 2022.06.08
Weather Observation Station 7  (0) 2022.06.07
Weather Observation Station 6 (regexp)  (0) 2022.06.07
Weather Observation Station 5  (0) 2022.06.07

댓글