Get startedGet started for free

Logical operators

You are interested in listing songs performed by Queen. Note that these songs can be composed by either the entire band or an individual band member. In your query you decide to retrieve songs where the composer is Queen or their lead singer, Freddie Mercury.

Remember that there are three logical operators, AND, OR, and NOT that can be used to apply more than one WHERE condition to your query.

This exercise is part of the course

Introduction to Oracle SQL

View Course

Exercise instructions

  • Select the song name and composer from the Track table.
  • Filter on tracks that are composed by 'Queen' or by 'Mercury- Freddie'.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Select the song name and composer from the track table
SELECT ___, ___
FROM ___
-- Filter on composer
WHERE Composer ___ ___ 
      ___ Composer ___ ___
Edit and Run Code