기록하는 습관

[SQL] (해커랭크) Weather Observation Station 1 본문

SQL

[SQL] (해커랭크) Weather Observation Station 1

Avalla 2023. 8. 19. 00:47

Problem

HackerRank > Prepare > SQL > Basic Select > Weather Observation Station 1

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.

Solution

더보기
SELECT DISTINCT CITY, STATE
FROM STATION
;