Skip to content

Instantly share code, notes, and snippets.

@FranckSilvestre
Created October 30, 2018 13:05
Show Gist options
  • Save FranckSilvestre/7b612a2630adb245e458f86aa0178c1b to your computer and use it in GitHub Desktop.
Save FranckSilvestre/7b612a2630adb245e458f86aa0178c1b to your computer and use it in GitHub Desktop.
SQL file to fill the "users" table.
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