일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- PostgreSQL
- Limit
- 결측값
- join
- 데이터분석
- airflow 설치
- 그로스해킹
- 파이썬
- Oracle
- SQLite
- not in
- MySQL
- GROUPBY
- SUM
- TRUNCATE
- seaborn
- solvesql
- 프로그래머스
- pandas
- hackerrank
- airflow.cfg
- having
- SQL
- 다중 JOIN
- Round
- 전처리
- 데이터시각화
- 머신러닝
- 데이터리안 웨비나
- matplotlib
Archives
- Today
- Total
Milky's note
[HackerRank](E) Weather Observation Station 1 본문
https://www.hackerrank.com/challenges/weather-observation-station-1/problem?isFullScreen=true
[문제]
Query a list of CITY and STATE from the STATION table.
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
[답]
- oracle
select city, state from station;
'SQL > SQL 코딩 테스트-HackerRank' 카테고리의 다른 글
[HackerRank](E) Weather Observation Station 4 (0) | 2022.03.16 |
---|---|
[HackerRank](E) Weather Observation Station 3 (0) | 2022.03.16 |
[HackerRank](E) Japanese Cities' Names (0) | 2022.03.16 |
[HackerRank](E) Japanese Cities' Attributes (0) | 2022.03.16 |
[HackerRank](E) Select By ID (0) | 2022.03.16 |
Comments