Menu
×
×
Correct!
Exercise:List the number of customers in each country.
SELECT @(5)(customer_id), country
FROM customers
@(16);
SELECT COUNT(customer_id), country
FROM customers
GROUP BY country;
Not CorrectClick here to try again. Correct!Next ❯ |