Hello,
I'm starting to develope a new database, and want to make sure i've got my table structure where it should be. I have 3 tables:
tblDivision
> pkDivID
> txtDivision
tblSubDivision
> pkSubDivID
> fkDivID
> txtSubDivision
tblPerson
> pkPersonID
> txtFirstName
> txtLastName
My problem arises from the fact that i want to link a person (from tblPerson) to each subdivision. Would i do that by ading a foreign key in tblSubDivision that links to tblPerson? Is that the right way to go about doing this? Is the way tblSubDivision is laid out (with foreign key to tblDivison) accurate?
Thanks!
Andrew.
I'm starting to develope a new database, and want to make sure i've got my table structure where it should be. I have 3 tables:
tblDivision
> pkDivID
> txtDivision
tblSubDivision
> pkSubDivID
> fkDivID
> txtSubDivision
tblPerson
> pkPersonID
> txtFirstName
> txtLastName
My problem arises from the fact that i want to link a person (from tblPerson) to each subdivision. Would i do that by ading a foreign key in tblSubDivision that links to tblPerson? Is that the right way to go about doing this? Is the way tblSubDivision is laid out (with foreign key to tblDivison) accurate?
Thanks!
Andrew.