Created
April 29, 2016 21:51
-
-
Save rsds143/a84a6c1979138f335015340627ec5791 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
—NEVER EVER EVER DO | |
BEGIN UNLOGGED BATCH; | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (1, 'Jim', 'James') | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (2, 'Ernie', 'Orosco') | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (3, 'Jose', 'Garza') | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (4, 'Sammy', 'Mason') | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (5, 'Larry', 'Bird') | |
INSERT INTO tester.users (userID, firstName, lastName) VALUES (6, 'Jim', 'Smith') | |
APPLY BATCH; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment