The following SQL statement lists the number of customers in each country:

PHOTO EMBED

Mon Jul 25 2022 23:43:01 GMT+0000 (Coordinated Universal Time)

Saved by @MC1

SELECT COUNT(CustomerID), Country
FROM Customers
GROUP BY Country;
content_copyCOPY