CREATE TABLE Movie ( 
    ID INT PRIMARY KEY, 
    Title VARCHAR(20), 
    Genre VARCHAR(20), 
    RatingCode VARCHAR(20), 
    Year INT
    ); 

SELECT Title, Genre 
FROM Movie 
WHERE Year = 2020; 

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: