Quote:
Originally Posted by r937
do a search for supertype/subtype
|
Thank you! That was EXACTLY what I was looking for.
So just to make sure I got this, would the following be correct using my example above?
tblMedia
- MediaID (Autonumber PK)
- MediaName
- MediaDate
- fkMediaTypeID
tblMediaTypes
- MediaTypeID (AutoNumber PK)
- MediaTypeName
- "TV Show"
- "Music Video"
tblTVShows
- TVShowID (Autonumber PK)
- fkMediaID
- NumberSeasons
- NumberEpisodes
tblMusicVideos
- MusicVideoID (Autonumber PK)
- fkMediaID
- ChoreographerName
There's obviously a lot more data for each subtype, but I just wanted to make sure I got the general concept accurately.
Also, how would these end up joining together in the long run? Would it be a form that listed all the MediaID's and then subforms that render based on the MediaType field, linking the FK's and PK's?
Thanks again!!