C
Cichlid
OK, this is what I have so far from John V.:
Movies
MovieID Autonumber Primary Key ' links tables together
Title
Medium <DVD, VHS, CD, Super-8 film, 8-track tape...>
Studio
Rating <G, PG, ...>
IssueDate
PurchaseDate
...
Actors
ActorID Autonumber PrimaryKey
LastName
FirstName
<any other desired bio information>
Cast
MovieID ' what movie does this actor play in
ActorID ' who's in the cast
Role ' what part did they play
Keywords
Keyword <e.g. Adventure, Comedy, etc.>
MovieKeywords
MovieID
Keyword
How would I deal with not only listing the entire cast for each movie, but
also having multiple movies featuring the same actors? My ideal database
would be searchable my cast.
Movies
MovieID Autonumber Primary Key ' links tables together
Title
Medium <DVD, VHS, CD, Super-8 film, 8-track tape...>
Studio
Rating <G, PG, ...>
IssueDate
PurchaseDate
...
Actors
ActorID Autonumber PrimaryKey
LastName
FirstName
<any other desired bio information>
Cast
MovieID ' what movie does this actor play in
ActorID ' who's in the cast
Role ' what part did they play
Keywords
Keyword <e.g. Adventure, Comedy, etc.>
MovieKeywords
MovieID
Keyword
How would I deal with not only listing the entire cast for each movie, but
also having multiple movies featuring the same actors? My ideal database
would be searchable my cast.