Comparing values
eSymphony has asked you to look into the differences between composer and artist name. More specifically, they want to know for which Queen tracks these differ. If they are the same a NULL
value should appear, and if they differ the artist name should be displayed. This is obviously no challenge for you since you know all about null-related functions.
This exercise is part of the course
Introduction to Oracle SQL
Exercise instructions
- Display
NULL
if the artist name and composer are the same and the artist name if they differ. - Filter on rows where the artist name is
'Queen'
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
-- Use the correct null-related function
SELECT t.Name, ar.Name, t.Composer, ___(___, ___)
FROM Track t INNER JOIN Album a
ON t.AlbumId = a.AlbumId
INNER JOIN Artist ar
ON a.ArtistId = ar.ArtistId
-- Filter on artist name Queen
WHERE ___ = '___'
ORDER BY 3