Menu
×
×
Correct!
Exercise: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; Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 50 exercises.
Are you sure you want to continue?