List the number of customers in each country, ordered by the country with the most customers first.
SELECT @(5)(CustomerID),
Country
FROM Customers
@(16)
ORDER BY
@(22);
SELECT COUNT(CustomerID),
Country
FROM Customers
GROUP BY Country
ORDER BY
COUNT(CustomerID) DESC;