728x90
1. ๋ฌธ์
Query a count of the number of cities in CITY having a Population larger than 100,000.
(larger than=์ด๊ณผ)
2. ๋ดํ์ด
SELECT COUNT(ID)
FROM CITY
WHERE POPULATION > 100000
3. ๊ฒฐ๊ณผ
728x90
1. ๋ฌธ์
Query a count of the number of cities in CITY having a Population larger than 100,000.
(larger than=์ด๊ณผ)
2. ๋ดํ์ด
SELECT COUNT(ID)
FROM CITY
WHERE POPULATION > 100000
3. ๊ฒฐ๊ณผ