What clause do you add to the following query to sort the donors in each city from high to low?

Correct
To retrieve the number of donors in each city, sorted high to low, the correct SQL query is:

query
SELECT COUNT (DonorID), City FROM new_donor_list GROUP BY City ORDER BY COUNT (DonorID) DESC