Instruction
Sometimes, a book is so popular that it gets adapted to another form (like a movie).
Here comes the Adaptation table!
Exercise
The Adaptation table consists of five columns:
BookId– the ID of a given book,Type– the type of adaptation (movie, game, play, musical),Title– the name of a given adaptation,ReleaseYear– the year in which a given adaptation was created,Rating– the average rating of a given adaptation.
Select all data from the Adaptation table.
Stuck? Here's a hint!
Type:
SELECT * FROM Adaptation



