CREATE TABLE Rating (
RatingCode VARCHAR(30) PRIMARY KEY,
RatingDescription VARCHAR(30)
);
CREATE TABLE Movie (
Title VARCHAR(30),
RatingCode VARCHAR(5),
Genre VARCHAR(30),
Year INT UNSIGNED,
FOREIGN KEY(RatingCode) REFERENCES Rating(RatingCode)
);
To embed this project on your website, copy the following code and paste it into your website's HTML: