본문 바로가기

SQL/[HackerRank]

[HackerRank/MySQL] Revising the Select Query I

728x90

< Problem >

CITY 테이블에서 인구가 100000을 넘고, CountryCode가 USA인 모든 칼럼 가져오기

링크:  https://www.hackerrank.com/challenges/revising-the-select-query/problem

 

Revising the Select Query I | HackerRank

Query the data for all American cities with populations larger than 100,000.

www.hackerrank.com


< Code >

SELECT *
FROM city
WHERE population>100000 AND countrycode = 'USA'

 

< Lesson & Learned >

SELECT 문 (조건검색)

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

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

WHERE: 키워드와 함께 비교 연산자(=, <, >=, <>)와 논리 연산자(AND, OR, NOT)를 이용한 검색 조건 제시

728x90