Answer the question
In order to leave comments, you need to log in
How to properly request a request?
Good afternoon, ladies and gentlemen.
How to display
Display the number of customers from each country?
www.w3schools.com/sql/trysql.asp?filename=trysql_s...
SELECT Country,COUNT(CustomerName)
FROM [Customers]
In this case, I only get one city.
Answer the question
In order to leave comments, you need to log in
use grouping like:
SELECT Country,COUNT(CustomerName)
FROM [Customers] GROUP BY Country
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question