CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Introduction to Oracle SQL

Afficher le cours

Instructions

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

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

-- Adapt the query below to show the correct results
SELECT Country, COUNT(*) AS Customers
FROM Customer
WHERE COUNT(*) > 4
GROUP BY Country
Modifier et exécuter le code