Hi all,
This is probably a stupid question and this task seems very simple, but I can't seem to get it to work.
I have three tables: Countries, Commdities and Schedules. I want to relate all three in one to many relationshipsin a chain:
Countries -> Commodities ->Schedules
Countries (ID as Primary key) related to Commodities (Primary key commoditiesID; foreign key ID) on ID.
Commodities (CommoditiesID as Primary key) related to Schedules (Primary key schedulesID; foreign key CommditiesID)
I could have sworn I have done this before, but I can't seem to get this to work. Entry into Countries and then commodities produces the entry of the ID in the foreign key field of Commodities, but this does not happen when I get to schedules. Anyone have an idea what I'm overlooking??
This is probably a stupid question and this task seems very simple, but I can't seem to get it to work.
I have three tables: Countries, Commdities and Schedules. I want to relate all three in one to many relationshipsin a chain:
Countries -> Commodities ->Schedules
Countries (ID as Primary key) related to Commodities (Primary key commoditiesID; foreign key ID) on ID.
Commodities (CommoditiesID as Primary key) related to Schedules (Primary key schedulesID; foreign key CommditiesID)
I could have sworn I have done this before, but I can't seem to get this to work. Entry into Countries and then commodities produces the entry of the ID in the foreign key field of Commodities, but this does not happen when I get to schedules. Anyone have an idea what I'm overlooking??