Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created December 12, 2019 16:44
Show Gist options
  • Save recursivecodes/172b39d2ce3e6f1107b73e9e2a480432 to your computer and use it in GitHub Desktop.
Save recursivecodes/172b39d2ce3e6f1107b73e9e2a480432 to your computer and use it in GitHub Desktop.
insert.sql
INSERT INTO TEST (username, first_name, middle_name, last_name, age, created_on) 
VALUES ('todd', 'Todd', null, 'Sharp', 42, sysdate);
INSERT INTO TEST (username, first_name, middle_name, last_name, age, created_on) 
VALUES ('gvenzl', 'Gerald', null, 'Venzl', 30, sysdate);
INSERT INTO TEST (username, first_name, middle_name, last_name, age, created_on) 
VALUES ('aalmiray', 'Andres', null, 'Almiray', 40, sysdate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment