Create the Database:
The data is the same as was described in the ER Design Project
assignment. In that assignment you were asked to map the ER diagram
to relations in the database. Here is a formal description of the
relations that you will use in this assignment:
streamTV Database Relations
shows(showID, title, premiere_year, network,
creator, category)
episode(showID, episodeID,
airdate, title)
showID is a foreign key to shows
actor(actID, fname, lname)
main_cast(showID, actorID,
role)
showID is a foreign key to...