CommencerCommencer gratuitement

Advanced grouping

You are interested in knowing how much money is coming in from cities in the USA and Canada. This information can be found in the Total column of the Invoice table.

To solve this problem, you will need to combine multiple statements that you've seen earlier in this chapter, such as aggregate functions, WHERE, GROUP BY, and ORDER BY.

Cet exercice fait partie du cours

Introduction to Oracle SQL

Afficher le cours

Exercice interactif pratique

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

-- Select the BillingCountry, BillingCity
___ ___, ___
FROM Invoice
-- Filter on BillingCountry 
___ BillingCountry ___ (___, ___)
Modifier et exécuter le code