I am working on a "Publications" database inwhich I have a table called "Pub_Index". This table contains necessary details for every publication inwhich the company has. It gets a little tricky in that we also have binders (which have their own ID) inwhich the contents fo the binder are the individual Publications listed in the Pub_Index table. The Pub_Index table contains (Pub_No, Description) and other details pertaining to the individual publication. Binder_Index contains (Binder_No, Description, Qty). Binder_Details contains (Binder_No, Qty, Pub_No) to track the individual publications that are contained in the Binder. I currently have a 1-many relationship for Pub_Index to Binder_Index and a 1-many relationship for Binder_Index to Binder Details.
Can you please tell me if this is a logical structure or if there may be a better way to handle this situation?
Can you please tell me if this is a logical structure or if there may be a better way to handle this situation?