carolinemcsherry / SCAD

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

29 - Code Required - The population of people, people living in cities, and people not living in cities in each continent. #145

Closed Antonia2206 closed 7 months ago

Antonia2206 commented 7 months ago

As a market researcher I need to know the population of people, people living in cities, and people not living in cities in each continent for future advertising opportunities

SELECT A.Name AS cityname, B.Name AS countryname, B.Continent, A.Population FROM city A LEFT JOIN country B ON A.CountryCode = B.Code;