Instruction
Good job! It's your turn to create a table with GENERATED ALWAYS AS IDENTITY.
Exercise
We need a table to keep track of movie reviews. Create a table named review with the following columns:
id– Contains auto-generated integer values (GENERATED ALWAYS AS IDENTITY) and is the primary key for this table.author_id– Anintegercolumn.title– A column with up to 64 characters.rating– Anintegercolumn.
Stuck? Here's a hint!
The title column should be of type varchar(64). The id column can be defined in a following way:
id integer GENERATED ALWAYS AS IDENTITY PRIMARY KEY



