[SQL] Revising Aggregations - The Count Function

순동·2022년 4월 15일
0

✅ Revising Aggregations - The Count Function


📝 문제

Query a count of the number of cities in CITY having a Population larger than 1000

Input Format

The CITY table is described as follows:


💻 풀이

SELECT COUNT(*)
FROM CITY
WHERE POPULATION > 100000;

0개의 댓글