In each milestone, you may want or need to use the database and query tool to answer some of the questions. We suggest you open the tool in another browser tab while you are working on this assessment.
https://postgres.sophia.org/
In trying to delete from the playlist table, what is the cause of this error?
"Query failed because of error: update or delete on table 'playlist' violates foreign key constraint 'playlist_track_playlist_id_fkey' on table 'playlist_track'."
a) The playlist_id doesn't exist in the playlist_track table.
b) The track has to be deleted first before the playlist is deleted.
c) The playlist_id doesn't exist in the playlist table.
d) The playlist_track table has a reference to the playlist_id that is being deleted.