본문 바로가기

SQL/[HackerRank]

[HackerRank/MySQL] Revising Aggregations - The Count Function

728x90

< Problem >

인구수가 100,000명 이상인 도시의 개수 구하기

링크:  https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem

 

Revising Aggregations - The Count Function | HackerRank

Query the number of cities having populations larger than 100000.

www.hackerrank.com


< Code >

SELECT COUNT(*)
FROM city
WHERE population > 100000

 

< Lesson & Learned >

SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열
FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름을 나열
WHERE: 키워드와 함께 비교 연산자(=, <, >=, <>)와 논리 연산자(AND, OR, NOT)를 이용한 검색 조건 제시
COUNT:  속성 값의 개수를 검색하기 위한 집계함수. NULL 속성 값은 제외하고 계산됨.

728x90