All Downloads are FREE. Search and download functionalities are using the official Maven repository.

entures.graphql-jpa-query-example-merge.0.3.19.source-code.books.sql Maven / Gradle / Ivy

-- Books
insert into author (id, name) values (1, 'Leo Tolstoy');
insert into book (id, title, author_id, genre) values (2, 'War and Peace', 1, 'NOVEL');
insert into book (id, title, author_id, genre) values (3, 'Anna Karenina', 1, 'NOVEL');
insert into author (id, name) values (4, 'Anton Chekhov');
insert into book (id, title, author_id, genre) values (5, 'The Cherry Orchard', 4, 'PLAY');
insert into book (id, title, author_id, genre) values (6, 'The Seagull', 4, 'PLAY');
insert into book (id, title, author_id, genre) values (7, 'Three Sisters', 4, 'PLAY');




© 2015 - 2024 Weber Informatics LLC | Privacy Policy