CODING TEST/SQL : HackerRank

[MySQL] Weather Observation Station 1

주 녕 2021. 3. 30. 15:50
반응형

▶  SQL  >  Basic Select  >  Weather Observation Station 1 

 Problem 

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

 My Answer 

SELECT CITY, STATE
FROM STATION

 

 

반응형