Weather Observation Station 8 (HackerRank)

yonny·2022년 10월 10일
0
post-custom-banner

Advanced Join

문제

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

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.

Input Format

The STATION table is described as follows:

STATION

where LAT_N is the northern latitude and LONG_W is the western longitude.

<내 코드>

SELECT DISTINCT city
FROM station
WHERE city REGEXP '^[aeiou]' AND city REGEXP '[aeiou]$'
;
post-custom-banner

0개의 댓글