Skip to content

Instantly share code, notes, and snippets.

@mmerriweather
Created January 11, 2018 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmerriweather/77641b5d338faa38192427f9f9b0f302 to your computer and use it in GitHub Desktop.
Save mmerriweather/77641b5d338faa38192427f9f9b0f302 to your computer and use it in GitHub Desktop.
Create Table
CREATE TABLE netflix_genres
([ID] int, [MovieName] varchar(15), [MovieGenre] varchar(15))
;
INSERT INTO netflix_genres
([ID], [MovieName], [MovieGenre])
VALUES
(1, 'Movie1', 'Genre1'),
(2, 'Movie2', 'Genre2'),
(3, 'Movie3', 'Genre3')
;
SELECT
SELECT * FROM netflix_genres;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment