I'm designing data entry forms and have a few many to many relationships that I've broken down into one to many relationships with join tables. The type of data entered will be bibliographic data.
Example of tables (to name a few)
Author_tbl
AuthorID (primary key)
AuthorName
Organization_tbl
OrganizationID (primary key)
OrganizationName
AuthorOrganization_tbl
AuthorID (primary key)
OrganizationID (primary key)
I've designed forms with subforms to accept the one to many relationships. Question - since one article can have up to 4 authors, who in turn can have 4 separate organizations, how do I allow for data entry people to put in all the data? Should I have Author1, Author2, Author3, Author4 as fields in my Author table, and the same for Organizations? I'm seeing a potential problem in the AuthorOrganization_tbl which holds the values for the entries - how will the table keep track of which record the authors and orgs belong to?
I hope this makes sense. I've received a lot of great advice from this forum, and I really appreciate it. I apologize to anyone who is getting tired of my posts, but I'm really trying to figure it out myself before I post.
Example of tables (to name a few)
Author_tbl
AuthorID (primary key)
AuthorName
Organization_tbl
OrganizationID (primary key)
OrganizationName
AuthorOrganization_tbl
AuthorID (primary key)
OrganizationID (primary key)
I've designed forms with subforms to accept the one to many relationships. Question - since one article can have up to 4 authors, who in turn can have 4 separate organizations, how do I allow for data entry people to put in all the data? Should I have Author1, Author2, Author3, Author4 as fields in my Author table, and the same for Organizations? I'm seeing a potential problem in the AuthorOrganization_tbl which holds the values for the entries - how will the table keep track of which record the authors and orgs belong to?
I hope this makes sense. I've received a lot of great advice from this forum, and I really appreciate it. I apologize to anyone who is getting tired of my posts, but I'm really trying to figure it out myself before I post.