Skip to content

Instantly share code, notes, and snippets.

@baso53
Last active November 14, 2021 13:18
Show Gist options
  • Save baso53/b26d460e8a2bd100150d15920ebe4fbe to your computer and use it in GitHub Desktop.
Save baso53/b26d460e8a2bd100150d15920ebe4fbe to your computer and use it in GitHub Desktop.
INSERT INTO COMPANY(ID, NAME, TYPE) VALUES(1, 'Imaginary Solutions', 'LLC');
INSERT INTO COMPANY(ID, NAME, TYPE) VALUES(2, 'Green Innovations', 'LLC');
INSERT INTO SUBSIDIARY(ID, NAME, CITY, COMPANY_ID) VALUES(1, 'Imaginary Solutions California', 'Palo Alto', 1);
INSERT INTO SUBSIDIARY(ID, NAME, CITY, COMPANY_ID) VALUES(2, 'Imaginary Solutions Texas', 'Austin', 1);
INSERT INTO SUBSIDIARY(ID, NAME, CITY, COMPANY_ID) VALUES(3, 'Green Innovations Canada', 'Quebec', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment