Code a query that selects all items when joining the movie and director tables on the common property director_id.
movie
director
director_id
Make sure to pick SELECT * followed by FROM movie and then INNER JOIN, director, ON.
SELECT *
FROM movie
INNER JOIN
ON