Im between cherry

Hackerrank | MySQL | Weather Observation Station 1 본문

데이터분석/practice_query

Hackerrank | MySQL | Weather Observation Station 1

meal 2020. 8. 27. 18:12

Weather Observation Station 1

Problem

 

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.
The STATION table is described as follows:

 

Solution

SELECT City, State
FROM Station
Comments