2025-01-31 20:58:36 +00:00
|
|
|
INSERT INTO books (title, author_id)
|
|
|
|
VALUES ('The Lord of the Rings: The Fellowship of the Ring', 1),
|
|
|
|
('The Lord of the Rings: The Two Towers', 1),
|
|
|
|
('The Lord of the Rings: The Return of the King', 1),
|
|
|
|
('To Build a Fire', 3);
|
|
|
|
|
|
|
|
INSERT INTO reviews (book_id, review)
|
|
|
|
VALUES (1, 'Great book'),
|
|
|
|
(3, 'Awesome book'),
|
2025-01-31 21:22:06 +00:00
|
|
|
(2, 'Probably his best work!'),
|
2025-01-31 20:58:36 +00:00
|
|
|
(2, 'Greatest book');
|