Under pressure
Are there some tracks that have never been bought? Let's find out.
For the moment, let's find out which tracks have been bought at least once.
Cet exercice fait partie du cours
Introduction to Oracle SQL
Instructions
- Find the tracks that appear in the
Track
table, that also appear in theInvoiceLine
one.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
-- Get track IDs that appear in InvoiceLine
SELECT TrackId
FROM ___
___
SELECT TrackId
FROM ___