bubble_chart StackLab

Database Migration

19 steps · pending Not started · person_outline Guest
arrow_back Back

Add some sample books

Let's do the same thing for the books. Add:

code 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');
code 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

login Sign in to save your progress permanently. info Progress is saved in your browser session
format_list_numbered Step 9 of 19