carolinemcsherry / SCAD

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

21 - Code Required - All cities within my district, sorted by population from largest to smallest #137

Closed Antonia2206 closed 7 months ago

Antonia2206 commented 7 months ago

As a City Administrator, I need to view all cities within my district, sorted by population from largest to smallest, to monitor population dynamics, plan public services, and address urbanization challenges effectively.

select * from city where city.District = 'Zytomyr' #This will be user defind var order by city.Population desc;