Skip to content

Instantly share code, notes, and snippets.

@vvaezian
Last active November 22, 2020 21:54
Show Gist options
  • Save vvaezian/e331b7109f478a22aab136ef02c3a626 to your computer and use it in GitHub Desktop.
Save vvaezian/e331b7109f478a22aab136ef02c3a626 to your computer and use it in GitHub Desktop.
-- 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