Menu
×
×
Correct!
Exercise:List the number of customers in each country.
SELECT @(5)(CustomerID),
Country
FROM Customers
@(16);
SELECT COUNT(CustomerID),
Country
FROM Customers
GROUP BY Country;
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 50 exercises.
Are you sure you want to continue?