[HackerRank|MySQL] Weather Observation Station 1

히끼·2020년 8월 21일
0

HackerRank

목록 보기
4/13

Weather Observation Station 1

Problem

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 CITY, STATE
FROM STATION

0개의 댓글