ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Oracle SQL

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

-- Select the country and the total number of customers
___ ___, ___(___) AS Total
FROM Customer
-- Group the results by country
___ ___ ___
Editar e executar o código