CREATE TABLE Rating( 
    RatingCode VARCHAR(20) PRIMARY KEY, 
    RatingDescription VARCHAR(20) 
    ); 

CREATE TABLE Movie ( 
    Title VARCHAR (30), 
    RatingCode VARCHAR(5), 
    Genre VARCHAR(30), 
    Year INT, 
    FOREIGN KEY(RatingCode) REFERENCES Rating(RatingCode)
    );

Embed on website

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