[HackerRank/SQL] 06. Easy - Weather Observation Station 1

jwKim·2023년 1월 7일
0

💻코테코테

목록 보기
17/42

< 과제 >

Query a list of CITY and STATE from the STATION table.
The STATION table is described as follows:

< 내 코드 >

SELECT
    city,
    state
FROM
    station;

< 출처 >
https://www.hackerrank.com/domains/sql

0개의 댓글