20 - Code Required -The top N populated cities in the world where N is provided by the user.
Closed this issue · 0 comments
Antonia2206 commented
The top N populated cities in the world where N is provided by the user.
As a Researcher, I need to retrieve the top N populated cities in the world, where N is specified by me, to conduct comparative studies, analyse urbanization trends, and gather insights into global demographics for my research projects
select name, Population
from city
order by Population desc
limit 10;