Challenge: Sequels in SQL







Step 1



Hint


SELECT … FROM …

LEFT OUTER JOIN …

ON …;

We've created a table with all the 'Harry Potter' films, with a sequel_id column that matches the id of
the sequel for each film. Issue a SELECT that will show the title of each movie next to its sequel's
(or NULL if it doesn't have a sequel).