융무의 기술블로그
article thumbnail

https://www.hackerrank.com/challenges/weather-observation-station-9/problem

 

Weather Observation Station 9 | HackerRank

Query an alphabetically ordered list of CITY names not starting with vowels.

www.hackerrank.com

select DISTINCT CITY
from STATION
where city not like 'a%'
and city not like 'e%'
and city not like 'i%'
and city not like 'o%'
and city not like 'u%'
SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[^aeiou]';

 정규 표현 식

 

 '^..$'; // 시작부터 2글자로 끝나는 이름을 찾아라.

'^I'; // 첫글자가 I로 시작되는 문장을 찾아라

^      : 문자열의 처음 -> ^1 -> 1로 시작되는 줄

profile

융무의 기술블로그

@융무

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!