Problem Statement:
Query a list of CITY and STATE from the STATION table.
Link: HackerRank - Weather Observation Station 1
Solution:
SELECT CITY, STATE FROM STATION;
Explanation:
The above is the detailed content of HackerRank SQL Preparation: Weather Observation Station ySQL). For more information, please follow other related articles on the PHP Chinese website!