You are viewing a single comment's thread. Return to all comments →
MS SQL
SELECT (MAX(POPULATION) - MIN(POPULATION)) AS DIFF_POP FROM CITY;
You don't need brackets on the outside of the aggregate functions.
Population Density Difference
You are viewing a single comment's thread. Return to all comments →
MS SQL
You don't need brackets on the outside of the aggregate functions.