Prepare > SQL > Basic Select > Weather Observation Station 1

2023. 7. 6. 19:14HackerRank-My SQL

 

Weather Observation Station 1 | HackerRank

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

www.hackerrank.com

 

문제


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

 

 

 

 

코드


SELECT CITY, STATE FROM STATION;