ComeçarComece de graça

Restricting groups

Earlier you created an overview of how many eSymphony customers live in each country. The output was a long list. Now, you want to restrict your results and only display countries with more than four customers. Since you grouped your output by country, you will now need to exclude values on a group-level rather than a row-level.

Este exercício faz parte do curso

Introduction to Oracle SQL

Ver curso

Instruções do exercício

  • Run the query. Note that it throws an error.
  • Adapt the query to show countries with more than four customers.

Exercício interativo prático

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

-- Adapt the query below to show the correct results
SELECT Country, COUNT(*) AS Customers
FROM Customer
WHERE COUNT(*) > 4
GROUP BY Country
Editar e executar o código