YUKIโs DEV BLOG ๐ป
/
Coding Test
/
SQL ์ฐ์ต ๋ฐ ์ฝ๋ฉํ ์คํธ
/
Population Density Difference
Search
Share
Population Density Difference
Population Density Difference | HackerRank
Query the difference between the maximum and minimum city populations in CITY.
SELECT MAX
(
POPULATION
)
-
MIN
(
POPULATION
)
FROM CITY
;
Python
๋ณต์ฌ