Created
January 11, 2018 18:45
-
-
Save mmerriweather/77641b5d338faa38192427f9f9b0f302 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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