[SQL] Population Density Difference

순동·2022년 4월 16일
0

✅ Population Density Difference


📝 문제

Query the difference between the maximum and minimum populations in CITY.

Input Format

The CITY table is described as follows:


💻 풀이

SELECT MAX(POPULATION) - MIN(POPULATION)
FROM CITY;

0개의 댓글

관련 채용 정보