Ok, I haven't been doing too much database work lately and my brain has gone
soft.
I need some help with proper structure.
My database is being used to track television shows.
Any given show will be associated with at least one production company (call
it ProdCo) but possibly up to 3 production companies (never more than that).
I have:
tblNetwork
NetID (numeric, Identity)
NetName (char, 50)
tblShowData
BookingNum (numeric, Identity)
BookingNumExt (numeric, Identity)
Now, if I was just dealing with one ProdCo I would add it tblShowData as a
foreign key from tblNetwork; no problem.
How do I structure it so that I can combine 1 to 3 ProdCo's as one reference
in tblShowData.
I tried:
tblNetworkCombo
ID (numeric, Identity)
Net1
Net2
Net3
The problem is, obviously I can only join the FK from tblNetworks to one of
the NetX fields in tblNetworkCombo .
I don't quite know where to go from here. Any help would be appreciated.
soft.
I need some help with proper structure.
My database is being used to track television shows.
Any given show will be associated with at least one production company (call
it ProdCo) but possibly up to 3 production companies (never more than that).
I have:
tblNetwork
NetID (numeric, Identity)
NetName (char, 50)
tblShowData
BookingNum (numeric, Identity)
BookingNumExt (numeric, Identity)
Now, if I was just dealing with one ProdCo I would add it tblShowData as a
foreign key from tblNetwork; no problem.
How do I structure it so that I can combine 1 to 3 ProdCo's as one reference
in tblShowData.
I tried:
tblNetworkCombo
ID (numeric, Identity)
Net1
Net2
Net3
The problem is, obviously I can only join the FK from tblNetworks to one of
the NetX fields in tblNetworkCombo .
I don't quite know where to go from here. Any help would be appreciated.
Comment