728x90
1. ๋ฌธ์
Query the total population of all cities in CITY where District is California.
2. ๋ดํ์ด
SELECT SUM(POPULATION)
FROM CITY
WHERE DISTRICT="California"
3. ๊ฒฐ๊ณผ
728x90
Query the total population of all cities in CITY where District is California.
SELECT SUM(POPULATION)
FROM CITY
WHERE DISTRICT="California"