Create a database containing data about movies.
CREATE TABLE moviecatalog.movies (movieId int, title varchar(255), releaseYear int, director varchar(255), price float)
INSERT INTO moviecatalog.movies VALUES (1, "La La Land", 2016, "Damien Chazelle", 4.99)
If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!