After connecting to MySQL, what establishes the correct database context for inserting into movies?
movies
Run INSERT INTO cinema without naming a table.
INSERT INTO cinema
Run USE cinema; before the INSERT.
USE cinema;
Run USE movies; because the table name is also the database name.
USE movies;
Run SELECT * FROM movies;, which automatically selects cinema for later statements.
SELECT * FROM movies;