정규식

    Weather Observation Station 7 [ MySql ]

    Weather Observation Station 7 | HackerRank Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. www.hackerrank.com $: ~로 끝나는지 []: 범위에 들어가는지 정규식을 사용하여 해결하였습니다. SELECT DISTINCT city FROM station WHERE city REGEXP '[aeiou]$'