~고군분투 인생살이~

[EASY] Weather Observation Station 1 본문

SQL/HACKER_RANK

[EASY] Weather Observation Station 1

소금깨 2022. 10. 24. 00:49
 

Weather Observation Station 1 | HackerRank

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

www.hackerrank.com

 

문제 조건

station 테이블에서 city와 state를 출력하시오.

 

문제 풀이

select city, state
from station

'SQL > HACKER_RANK' 카테고리의 다른 글

[Easy] Weather Observation Station 4  (0) 2022.10.24
[Easy] Weather Observation Station 3  (0) 2022.10.24
[MEDIUM] Weather Observation Station 18  (0) 2022.10.13
[MEDIUN] New Companies  (0) 2022.10.13
[EASY] Japanese Cities' Names  (0) 2022.10.13
Comments