Add some sample books
Let's do the same thing for the books. Add:
sql
INSERT INTO books (
book_title,
book_author,
book_category
) VALUES
('Project Hail Mary', 'Andy Weir', 'Science Fiction'),
('Jurassic Park', 'Michael Crichton', 'Science Fiction'),
('1984', 'George Orwell', 'Science Fiction');
text
ID | Book Title | Book Author | Category
------------------------------------------------------------
1 | Project Hail Mary | Andy Weir | Science Fiction
2 | Jurassic Park | Michael Crichton | Science Fiction
3 | 1984 | George Orwell | Science Fiction
Sign in to save your progress permanently.
Progress is saved in your browser session
Step 9 of 19