일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Word2vec
- 자연어처리
- Stack
- Heap
- Sigmoid
- Numpy
- affine
- algorithm
- CBOW
- MySQL
- Programmers
- 신경망
- FullyConnectedLayer
- kakao
- select
- Python
- hash
- 프로그래머스
- PPMI
- que
- sort
- dl
- stak
- skip-gram
- SQL
- 파이썬
- 딥러닝
- DeepLearning
- boj
- backward
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Observation Station 3 (MySQL) 본문
https://www.hackerrank.com/challenges/weather-observation-station-3/problem?isFullScreen=true
문제
Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer.
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 id%2=0
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 5 (MySQL) (0) | 2022.08.08 |
---|---|
[HackerRank] Weather Observation Station 4 (MySQL) (0) | 2022.08.08 |
[HackerRank] Weather Observation Station 1 (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Names (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Attributes (MySQL) (0) | 2022.08.03 |
Comments