Get startedGet started for free

Grouping

People all over the world are buying tracks from eSymphony. You want to get an overview of how many customers live in each country. This means you will need to group your data.

This exercise is part of the course

Introduction to Oracle SQL

View Course

Exercise instructions

  • Select the Country and the total number of customers for each country.
  • Group the results by country.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Select the country and the total number of customers
___ ___, ___(___) AS Total
FROM Customer
-- Group the results by country
___ ___ ___
Edit and Run Code