Skip to content

Instantly share code, notes, and snippets.

@queerviolet
Forked from tmkelly28/twitter-seed.sql
Last active May 2, 2016 21:14
Show Gist options
  • Save queerviolet/934ef0b45602d01c0abb2fb7ab80d8c0 to your computer and use it in GitHub Desktop.
Save queerviolet/934ef0b45602d01c0abb2fb7ab80d8c0 to your computer and use it in GitHub Desktop.
INSERT INTO Users (name, pictureUrl) VALUES ('Donald Trump', 'http://i.imgur.com/CTil4ns.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Ted Cruz', 'http://i.imgur.com/Ru6KUIm.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Bernie Sanders', 'http://i.imgur.com/KhisgEO.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Hillary Clinton', 'http://i.imgur.com/XbsjDcr.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Marco Rubio', 'http://i.imgur.com/cYxVyyg.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('John Kasich', 'http://i.imgur.com/I8WtzSw.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Kanye West', 'http://i.imgur.com/MItGWVS.jpg');
INSERT INTO Users (name, pictureUrl) VALUES ('Taylor Swift', 'http://i.imgur.com/JKInSVz.jpg');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Donald Trump'), 'Make Fullstack great again!');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Ted Cruz'), 'We need a shutdown of Fullstack until Avalon is allowed again.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Bernie Sanders'), 'Fullstack should be free for all!');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Hillary Clinton'), 'It takes a village to raise a programmer.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Marco Rubio'), 'They''re making Promises they cannot resolve.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='John Kasich'), 'Only one person tweeting here has ever written Hello World.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Kanye West'), 'I''ma let you finish coding, but…');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Taylor Swift'), 'I knew you were trouble when you forgot to handle errors.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Kanye West'), 'I think what Kanye West is going to mean is something similar to what Steve Jobs means.');
INSERT INTO Tweets (userId, content) VALUES ((SELECT id from Users where name='Taylor Swift'), 'I''ve got some whitespace baby — and I''ll write your `.name`');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment