Created
October 30, 2018 13:05
-
-
Save FranckSilvestre/7b612a2630adb245e458f86aa0178c1b to your computer and use it in GitHub Desktop.
SQL file to fill the "users" table.
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
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('bobdeniro', 1, '[email protected]', 1); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('eliseB', 2, '[email protected]', 1); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('arthurH', 3, '[email protected]', 1); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('wandaL', 4, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('paulsimon', 5, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('jessicaA', 6, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('steveM', 7, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('evaM', 8, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('alpacino', 9, '[email protected]', 2); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('eddym', 10, '[email protected]', 3); | |
INSERT INTO my_activities.users (username, id, email, status_id) VALUES ('francoises', 11, '[email protected]', 3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment