Case
In the case i create database named db_movie
and following code below to create one table named t_movie
CREATE TABLE t_movie (id_movie int auto_increment primary key, movie_title varchar(30), movie_rate int)
Insert several data into table
INSERT INTO t_movie (movie_title, movie_rate) VALUES ('Dunkirik', '9')