Open rosshardie opened 5 years ago
City Report A city report requires the following columns:
SELECT
city.Name,
country.Name,
city.District,
city.Population
FROM city
JOIN country ON country.Code = city.CountryCode
WHERE country.Region LIKE 'Caribbean' -- region taken from user input
ORDER BY city.Population DESC
LIMIT 10; -- number taken from user input
As a user I want to be able to see the top number of populated cities in a region where the number is specified by me