A 1-to-1 relationship based on two fields. Hear me out...
tbl_Products has a one-to-many relationship with tbl_Stock. Each product can have many suppliers.
tbl_Stock has a one-to-one relationship with an external feed (which I have no control over), containing cost, quantity etc. There are no individually unique fields in the external feed, but SupplierSKU and SupplierID together are always unique.
So I want to relate tbl_Stock to the external feed using two fields.
End result is ONE product, with MANY suppliers, each with their own cost and quantity.
Tried a few things with no success, and finally admitted I'm out of my depth on this particular thing. What's the best way to make it work?
tbl_Products has a one-to-many relationship with tbl_Stock. Each product can have many suppliers.
tbl_Stock has a one-to-one relationship with an external feed (which I have no control over), containing cost, quantity etc. There are no individually unique fields in the external feed, but SupplierSKU and SupplierID together are always unique.
So I want to relate tbl_Stock to the external feed using two fields.
End result is ONE product, with MANY suppliers, each with their own cost and quantity.
Tried a few things with no success, and finally admitted I'm out of my depth on this particular thing. What's the best way to make it work?