carolinemcsherry / SCAD

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

27 - Code Required - The top N populated countries in a continent where N is provided by the user. #143

Closed Antonia2206 closed 7 months ago

Antonia2206 commented 7 months ago

As a market research analyst, I require a feature that allows me to access the top N populated countries in a continent, where N is specified by me, to analyse regional market potential effectively.

SELECT Population, name as country, continent FROM country limit 5; -- retrieves Population, country name, continent and limits to 5 results