Testing if a value is NULL
eSymphony is interested in knowing the number of tracks that are not in a playlist and cost $1.99. Since they know songs in a playlist are bought more often, they want to get an idea of the potential revenue they are missing out on.
To answer this question you will need to join the data and look at the NULL
values added where the join condition is not met.
Cet exercice fait partie du cours
Introduction to Oracle SQL
Instructions
- Select the total count of resulting rows.
- Perform the appropriate join between the
Track
andPlaylistTrack
tables. - Filter on tracks that are not in a playlist and cost $1.99.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
-- Count the number of rows in the result
SELECT ___(*) AS SongCount
-- Perform the appropriate join
FROM ___
ON t.___ = p.___
-- Filter on tracks not in a playlist and cost $1.99
WHERE p.___ ___ ___ AND t.UnitPrice = ___