일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- kakao
- algorithm
- SQL
- 프로그래머스
- DeepLearning
- 자연어처리
- Programmers
- Stack
- boj
- FullyConnectedLayer
- 딥러닝
- skip-gram
- 신경망
- PPMI
- Numpy
- Sigmoid
- select
- stak
- backward
- Word2vec
- que
- MySQL
- Python
- hash
- 파이썬
- sort
- Heap
- CBOW
- dl
Archives
- Today
- Total
혜온의 이것저것
[HackerRank] Weather Observation Station 1 (MySQL) 본문
https://www.hackerrank.com/challenges/weather-observation-station-1/problem?isFullScreen=true
Weather Observation Station 1 | HackerRank
Write a query to print the CITY and STATE for each attribute in the STATION table.
www.hackerrank.com
문제
Query a list of CITY and STATE from the STATION table.
The STATION table is described as follows:
![](https://blog.kakaocdn.net/dn/b1oO4i/btrISAwBmjM/HeSKhRmPsmjdwgMmf39yCk/img.jpg)
where LAT_N is the northern latitude and LONG_W is the western longitude.
풀이
select city, state from station
'Data Analysis > SQL' 카테고리의 다른 글
[HackerRank] Weather Observation Station 4 (MySQL) (0) | 2022.08.08 |
---|---|
[HackerRank] Weather Observation Station 3 (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Names (MySQL) (0) | 2022.08.03 |
[HackerRank] Japanese Cities' Attributes (MySQL) (0) | 2022.08.03 |
[HackerRank] Select By ID (MySQL) (0) | 2022.08.03 |
Comments