Program 17: Find the total number of customers from each country in the table (customer ID, customer name, country) using group by

Clear Doubts with Computer Tutor
In case you’re facing problems in understanding concepts, writing programs, solving questions, want to learn fun facts | tips | tricks or absolutely anything around computer science, feel free to join CTs learner-teacher community: students.computertutor.in

Select country , count(distinct customer_ID) as number_of_customers
From customer
Group by country ;

You cannot copy content of this page