본문 바로가기

Language/SQL

[HackerRank][SQL] Weather Observation Station 1 - 컴도리돌이

728x90
728x90
 

Weather Observation Station 1 | HackerRank

Write a query to print the CITY and STATE for each attribute in the STATION table.

www.hackerrank.com


Problem

Query a list of CITY and STATE from the STATION table.

-> Station 테이블에서 City 및 State 컬럼을 출력.


Answer

select city,state
from station

 

728x90
728x90