본문 바로가기

SQL/[HackerRank]

[HackerRank/MySQL] Weather Observation Station 1

728x90

< Problem >

STATION 테이블에서 CITY, STATE 칼럼 가져오기

링크:  https://www.hackerrank.com/challenges/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


< Code >

SELECT city, state
FROM station

 

< Lesson & Learned >

SELECT 문 (조건검색)

SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열

FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름을 나열

728x90