Sql count () com grupo por
SELECT country, COUNT(*) AS customers
FROM Customers
GROUP BY country;
SAMER SAEID
SELECT country, COUNT(*) AS customers
FROM Customers
GROUP BY country;