Instruction
Good. Everything works well. Now it's your turn to create a table with GENERATED BY DEFAULT AS IDENTITY. Remember to put that information after the column type!
Exercise
Create a table called theater with the following columns:
theater_id– The primary key, anintegercolumn with consecutive numbers automatically generated (GENERATED BY DEFAULT AS IDENTITY).name– Up to 30 characters.city– Up to 30 characters.
Important: You should also be able to provide your own values for the theater_id column.



