Weather Observation Station 12

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

Basic Select

문제

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

Query the list of CITY names from STATION that do not start with vowels and do not end with vowels. 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 NOT REGEXP '^[aeiou]' AND city NOT REGEXP '[aeiou]$'
;
post-custom-banner

0개의 댓글