carolinemcsherry / SCAD

Software Engineering Methods Coursework Assessment
Apache License 2.0
1 stars 0 forks source link

25 - Code Required - cities in the world, sorted by population from largest to smallest #141

Closed Antonia2206 closed 7 months ago

Antonia2206 commented 7 months ago

As a Data Analyst, I need access to a list of all cities in the world, sorted by population from largest to smallest, to conduct global population analysis and demographic studies.

select country.Continent, country.Name as 'County Name', city.Name as 'City Name', city.District, city.Population as 'Population descending' from city JOIN country ON country.Code = city.CountryCode # joining the table country to countrylanguage order by city.Population desc;