Snoopy [해커랭크/SQL] 6. Weather Observation Station 1
코딩테스트/해커랭크 SQL

[해커랭크/SQL] 6. Weather Observation Station 1

Sooyoon Jeong 2022. 12. 11.

👉https://www.hackerrank.com/challenges/weather-observation-station-1/problem?isFullScreen=true

 

Weather Observation Station 1 | HackerRank

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

www.hackerrank.com


🤔 문제 분석

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

 

💡 풀이

SELECT CITY, STATE
FROM STATION

댓글