Instruction
Good job! You can see that GENERATED ALWAYS AS IDENTITY added after a column type auto-generates integers for you.
Exercise
Add a few more rows to the table and see for yourself how the consecutive numbers are generated for the column id. Insert rows using the button. As you can see, new values are generated automatically.
When you're done with the exercise, click .
Stuck? Here's a hint!
To insert more rows, use:
INSERT INTO movie (title, year, genre) VALUES ( ... ), ( ... ), ( ... );



