List the number of customers in each country, ordered by the country with the most customers first. code example
Example: sql groub by count
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country