Hi, not sure the right terminology here, so I'll try my best to explain the situation.
Database contains information on studies that scientists have completed (metadata).
tblMetaData contains the relevant info like:
MetaDataID (primary key, autonumber)
Author
Title
etc..
with a field called Publications - which I would like to be a list like:
3,7,41 (these numbers represent journal articles PublicationID that this study has published)
These will be linked to another table called tblPublications which contains relevant info like:
PublicationID (primary key, autonumber)
Author
Title, etc..
with a field called MetaData - which I would like to be a list like:
2,5,7 (these numbers represent the MetaData ID, that this publication has come from)
So now my quesiton.
These two tables are linked via Many-Many. How can I get a field to accept many different MetaDataID, or PublicationID numbers, and still be functional (in queries etc). I can see doing this with say 10 or 20 fields in each table (i.e. PublicationID#1, PubID#2 etc..) hoping I never have more than this. Doesnt seem like the most elegant solution though!
Hope this is clear.
Regards,
Matts
Database contains information on studies that scientists have completed (metadata).
tblMetaData contains the relevant info like:
MetaDataID (primary key, autonumber)
Author
Title
etc..
with a field called Publications - which I would like to be a list like:
3,7,41 (these numbers represent journal articles PublicationID that this study has published)
These will be linked to another table called tblPublications which contains relevant info like:
PublicationID (primary key, autonumber)
Author
Title, etc..
with a field called MetaData - which I would like to be a list like:
2,5,7 (these numbers represent the MetaData ID, that this publication has come from)
So now my quesiton.
These two tables are linked via Many-Many. How can I get a field to accept many different MetaDataID, or PublicationID numbers, and still be functional (in queries etc). I can see doing this with say 10 or 20 fields in each table (i.e. PublicationID#1, PubID#2 etc..) hoping I never have more than this. Doesnt seem like the most elegant solution though!
Hope this is clear.
Regards,
Matts