Hi Czarjosh,
Remember that your FK's (5 of them) will each link to ONE record only in 5 DIFFERENT tables, the FK is a value that points to the PK of another SINGLE record.
Your record with 5 FK's is the MANY - you can have MANY records with 5 FK's in it with ONE record from other tables related via their PK to each of these FK's.
In the following: tblTown is the MANY, because it will contain MANY records that are in Lancashire (tblCounty) and also in England (tblCountry)...
[tt]
tblCOUNTY tblTOWN
pk 1-----| pk
CountyName | TownName
|----M County_fk
StdCode
|----M Country_fk
tblCOUNTRY |
pk 1-----|
CountryName
This isn't a good example, because Country should have many Counties and County should have many Towns, but it illustrates what you are trying to do.
In essence, you will have many different Towns that are in London and England.
Please describe your tables here (table, PK's and FK's) if you still think that you've got the relationship idea right.
Regards,
Darrylle
"Never argue with an idiot, he'll bring you down to his level - then beat you with experience."