Revising Aggregations-The Count Function
문제: Query a count of the number of cities in CITY having a Population larger than 100,000.
풀이: population 100,000명을 초과하는 CITY의 도시 수를 카운팅하는 문제이다.
SELECT COUNT(ID) FROM CITY WHERE POPULATION > 100000; |
Revising Aggregations-The Sum Function
문제: Query the total population of all cities in CITY where District is California.
풀이: district가 California인 CITY의 모든 도시의 총 인구 수를 구하는 문제.
SELECT SUM(POPULATION) AS TOTAL FROM CITY WHERE DISTRICT = 'California'; |
'Database' 카테고리의 다른 글
Stored Function (0) | 2021.08.28 |
---|---|
해커랭크 SQL문제_0807 (0) | 2021.08.07 |
해커랭크 SQL문제_0804 (0) | 2021.08.04 |
해커랭크 SQL문제_0803 (0) | 2021.08.03 |
해커랭크 SQL문제_0802 (0) | 2021.08.02 |