본문 바로가기
[업무 지식]/MySQL

[left, right] Weather Observation Station 8

by 에디터 윤슬 2024. 11. 19.

링크

https://www.hackerrank.com/challenges/weather-observation-station-8/problem?isFullScreen=true

 

Weather Observation Station 8 | HackerRank

Query CITY names that start AND end with vowels.

www.hackerrank.com

 

문제

Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates.

정답

select distinct city
from station
where left(city, 1) in('a', 'e', 'i', 'o', 'u')
and right(city, 1) in('a', 'e', 'i', 'o', 'u')

새롭게 이해한 내용

  • left(컬럼, 위치)의 문자를 선택할 수 있다.
  • right(컬럼, 위치)의 문자를 선택할 수 있다.