You are viewing a single comment's thread. Return to all comments →
SELECT FLOOR(AVG(CT.POPULATION)) , CR.CONTINENT FROM CITY CT JOIN COUNTRY CR ON CT.COUNTRYCODE = CR.CODE GROUP BY CR.CONTINENT ORDER BY CR.CONTINENT;
I wrote this query I am unable to get the issue in the query as it is saying result is not correct
Seems like cookies are disabled on this browser, please enable them to open this website
Average Population of Each Continent
You are viewing a single comment's thread. Return to all comments →
SELECT FLOOR(AVG(CT.POPULATION)) , CR.CONTINENT FROM CITY CT JOIN COUNTRY CR ON CT.COUNTRYCODE = CR.CODE GROUP BY CR.CONTINENT ORDER BY CR.CONTINENT;
I wrote this query I am unable to get the issue in the query as it is saying result is not correct