I have 2 tables: tblAdhesives & tblPurchasesAdhesives
Table tblAdhesives contains a record for every product that we use. It has fields such as ID, Manufacturer, Type, etc.
Table tblPurchasesAdhesives contains purchase records for products that we purchase. This table contains a field named AdhesiveType which is a combo box listing the records of tblAdhesives. When the user makes a selection from the combo box, the ID of the record (from tblAdhesives) is returned for the AdhesiveType of the tblPurchasesAdhesives table.
What type of relationship/join should be used if I wish to create a query that would allow me to query on a field in the tblAdhesives table (such as Manufacturer), and see all applicable records in the tblPurchasesAdhesives table? Or would a different table structure be required to do this?
Thanks.
--
Mike
Why make it simple and efficient when it can be complex and wonderful?
Table tblAdhesives contains a record for every product that we use. It has fields such as ID, Manufacturer, Type, etc.
Table tblPurchasesAdhesives contains purchase records for products that we purchase. This table contains a field named AdhesiveType which is a combo box listing the records of tblAdhesives. When the user makes a selection from the combo box, the ID of the record (from tblAdhesives) is returned for the AdhesiveType of the tblPurchasesAdhesives table.
What type of relationship/join should be used if I wish to create a query that would allow me to query on a field in the tblAdhesives table (such as Manufacturer), and see all applicable records in the tblPurchasesAdhesives table? Or would a different table structure be required to do this?
Thanks.
--
Mike
Why make it simple and efficient when it can be complex and wonderful?