average population of each continent hackerrank solution oracle
Code:
select country.continent,floor(avg(city.population)) from city inner join country
on city.countrycode = country.code
group by country.continent;
Code:
select country.continent,floor(avg(city.population)) from city inner join country
on city.countrycode = country.code
group by country.continent;
Comments
Post a Comment