-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
eb4a334
commit 57ff2d2
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--h2 | ||
-- h2 initial data load INSERTS | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1001, 'Mr', 'Conor', 'Heffron', 45); | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1002, 'Mrs.', 'Nora', 'Jones', 29); | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1003, 'Dr', 'Joe', 'Bloggs', 43); | ||
--SELECT * FROM PERSON where title LIKE 'M%'; from H2 console |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-- ** Test Inserts for DEBUG ONLY ** | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1001, "Mr", "Conor", "Heffron", 43); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1002, "Mr", "Joe", "Bloggs", 44); | ||
INSERT INTO `ironoc_db`.`person` (`id`, `title`, `first_name`, `surname`, `age`) VALUES (1003, "Dr", "John", "Jones", 29); | ||
-- ** MySQL Test INSERTS for DEBUG & TESTING PURPOSES ONLY ** | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1001, 'Mr', 'Conor', 'Heffron', 45); | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1002, 'Mrs.', 'Nora', 'Jones', 29); | ||
INSERT INTO IRONOC_DB.PERSON (id, title, first_name, surname, age) VALUES (1003, 'Dr', 'Joe', 'Bloggs', 43); |
This file contains 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