문제
Query a count of the number of cities in CITY having a Population larger than .
Input Format
The CITY table is described as follows:
코드
SELECT COUNT(*)
FROM city
WHERE population > 100000
풀이
1. pupulation이 100000 초과
출처
반응형
'Algorithm > MySQL' 카테고리의 다른 글
[해커랭크(Hacker Rank)]Population Density Difference (MySQL) (0) | 2021.06.30 |
---|---|
[해커랭크(Hacker Rank)]Average Population (MySQL) (0) | 2021.06.30 |
[해커랭크(Hacker Rank)] Revising Aggregations - The Sum Function (MySQL) (0) | 2021.06.30 |
[해커랭크(Hacker Rank)] Revising Aggregations - Averages (MySQL) (0) | 2021.06.30 |
[프로그래머스] 보호소에서 중성화한 동물 (MySQL) (0) | 2021.06.29 |