Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- row_number
- 패스트캠퍼스
- 패캠챌린지
- LeetCode
- medium
- 프로그래머스
- Hard
- 패스트캠퍼스후기
- 직장인인강
- SELF-JOIN
- 해커랭크
- MySQL
- Hackerrank
- easy
- SQL
- group by
- HACKER_RANK
- solvesql
- 직장인자기계발
- 파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
- recursive
- 파이썬을활용한시계열데이터분석
- join
- 프리미엄
- lv.4
- 다시풀어보기
- RANK
- 어려웠음
- meidum
- 시계열데이터분석
Archives
- Today
- Total
~고군분투 인생살이~
[EASY] Weather Observation Station 10 본문
1. 문제 설명
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.
2. 문제 풀이
3. 결과
SELECT DISTINCT CITY
FROM STATION
WHERE CITY REGEXP '[^AEIOU]$.*'
Comments