728x90
1. ๋ฌธ์
Query the difference between the maximum and minimum populations in CITY.
2. ๋ดํ์ด
SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY
3. ๊ฒฐ๊ณผ
728x90
Query the difference between the maximum and minimum populations in CITY.
SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY