[HackerRank] Weather Observation Station 10
2021. 1. 24. 16:19ㆍ데이터베이스/SQL
728x90
반응형
Query the list of CITY names from STATION that do not end with vowels. Your result cannot contain duplicates.
Input Format
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
SELECT DISTINCT CITY FROM STATION
WHERE CITY REGEXP '[^aeiou]$';
'데이터베이스 > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 12 (0) | 2021.01.24 |
---|---|
[HackerRank] Weather Observation Station 11 (0) | 2021.01.24 |
[HackerRank] Weather Observation Station 9 (0) | 2021.01.22 |
[HackerRank] Weather Observation Station 8 (0) | 2021.01.22 |
[HackerRank] Weather Observation Station 7 (0) | 2021.01.22 |