일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- affine
- 프로그래머스
- sort
- Sigmoid
- stak
- hash
- Programmers
- MySQL
- kakao
- Stack
- DeepLearning
- FullyConnectedLayer
- dl
- skip-gram
- que
- boj
- SQL
- algorithm
- 파이썬
- PPMI
- 딥러닝
- Numpy
- 신경망
- Python
- select
- backward
- CBOW
- Word2vec
- 자연어처리
- Heap
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Obsercation Station 7 (MySQL) 본문
https://www.hackerrank.com/challenges/weather-observation-station-7/problem?isFullScreen=true
문제
Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. 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 like '%a' or city like '%e' or city like '%i' or city like '%o' or city like '%u'
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 9 (MySQL) (0) | 2022.08.08 |
---|---|
[HackerRank] Weather Observation Station 8 (MySQL) (0) | 2022.08.08 |
[HackerRank] Weather Observation Station 6 (MySQL) (0) | 2022.08.08 |
[HackerRank] Weather Observation Station 5 (MySQL) (0) | 2022.08.08 |
[HackerRank] Weather Observation Station 4 (MySQL) (0) | 2022.08.08 |
Comments