You are querying a database that contains data about music. You are only interested in data related to the jazz musician Miles Davis. The names of the musicians are listed in the composer column.

You write the SQL query below. Add a WHERE clause that will return only data about music by Miles Davis.

SELECT 
*
FROM
track
Correct
The clause WHERE composer = "Miles Davis" will return only data about music by Miles Davis. The complete query is SELECT * FROM track WHERE composer = “Miles Davis”. The WHERE clause filters results that meet certain conditions. The WHERE clause includes the name of the column, an equals sign, and the value(s) in the column to include.

The track Now's The Time by Miles Davis appears in row 1 of your query result.