ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Oracle SQL

Ver curso

Exercício interativo prático

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

-- Select the BillingCountry, BillingCity
___ ___, ___
FROM Invoice
-- Filter on BillingCountry 
___ BillingCountry ___ (___, ___)
Editar e executar o código