Created
October 28, 2013 19:50
-
-
Save bogsio/7203404 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
CREATE TABLE posts ( | |
post_id SERIAL PRIMARY KEY, | |
title text, | |
content text | |
); | |
INSERT INTO | |
posts(title, content) | |
VALUES('This is my first post', | |
'We are going to have so much fun!') | |
INSERT INTO | |
posts(title, content) | |
VALUES('I went to the movies', | |
'Watched Django Unchained! Awesome!') | |
INSERT INTO | |
posts(title, content) | |
VALUES('My favourite food?', | |
'You do''nt know? It''s pizza!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment