Instruction
Awesome! One more question for you!
Exercise
The publishing house now needs a review system for their textbooks. Create a table named review with the following columns:
id– An integer and the primary key.textbook_id– An integer and a foreign key referencing theidcolumn in thetextbooktable.content– A text value of any length.
The foreign key should be constructed so that whenever a corresponding row in the textbook table is updated or deleted, the changes are reflected in the review table.



