Last active
November 22, 2020 21:54
-
-
Save vvaezian/e331b7109f478a22aab136ef02c3a626 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- GENRES (Helper Table) | |
create table genres ( | |
genre varchar(20) | |
); | |
insert into genres | |
values ('Action'),('Adventure'),('Animation'),('Biography'),('Comedy'),('Crime'),('Drama') | |
,('Family'),('Fantasy'),('Film-Noir'),('History'),('Horror'),('Music'),('Musical') | |
,('Mystery'),('Romance'),('Sci-Fi'),('Sport'),('Thriller'),('War'),('Western') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment