jimeee
To create this you will need to include a minimum of the following tables, which include the minimum amounts of fields. You should add the additional fields required:
tblUsers -
lngUserID (PK)
strFName
strLName
tblLoans -
lngDVDID (PK)
lngUserID (PK)
dteLoanDate (PK)
tblDVDDetails -
lngDVDID (PK)
strDVDTitle
intOverallDVDLength
tblProgramDetails -
lngProgramID (PK)
lngDVDID (FK)
intProgramLength
tblSceneDetails -
lngSceneID (PK)
lngProgramID (FK)
intLengthOfScene
tblSceneDescriptions -
lngSceneDescriptionID (PK)
lngSceneID (FK)
strSceneDescription
tblUsers >> tblDVDDetails (Many - To - Many) via tblLoans. One User can have Many Loans, Many Loans can have Many Users.
tblLoans >> Multi-field Primary Key. Included dteLoanDate as the same user could loan the same DVD on different occasions.
tblDVDDetails >> tblProgramDetails (One - To - Many). One DVD can include Many Programs.
tblProgramDetails >> tblSceneDetails (One - To - Many). One Program can include Many Scenes.
tblSceneDetails >> tblSceneDescriptions (One - To - Many). One Scene can have Many Scene Descriptions.
Please see the attached screen shot of the Relationships.
Can you also try to avoid posting the same question in
two different forums . If you are unsure of which forum to use, the General one is your best bet.
Hope this points you in the right direction.
Graham