I have a situation were I have a main table and several additional tables that have relationships based on an ID using an auto-number. Anywhere I have a word followed by ID is a place where a relatiohship exists between two tables using an auto-number.
I have one particular table (tblAirline) that needs to be referenced twice. The table needs the exact same structure and content, but it has two different meanings in the main table. How can I make this work, or how do I need to redesign this portion of my database?
tblMain:
ID
AcctMngrID
RegionID
PurchaserID
OperatorID
FY01$
FY02$
FY03$
Comments
tblAcctMngr:
AcctMngrID
AcctMngrName
tblRegion:
RegionID
RegionName
tblAirline:
AirlineID
AirlineName
Where AirlineID needs to have a one-to-many relationship with both the PurchaserID and the OperatorID in the table tblMain.
I have one particular table (tblAirline) that needs to be referenced twice. The table needs the exact same structure and content, but it has two different meanings in the main table. How can I make this work, or how do I need to redesign this portion of my database?
tblMain:
ID
AcctMngrID
RegionID
PurchaserID
OperatorID
FY01$
FY02$
FY03$
Comments
tblAcctMngr:
AcctMngrID
AcctMngrName
tblRegion:
RegionID
RegionName
tblAirline:
AirlineID
AirlineName
Where AirlineID needs to have a one-to-many relationship with both the PurchaserID and the OperatorID in the table tblMain.