L
Lostguy
Hello!
Getting wrapped around something basic:
I have 2 tables:
tblDog with DogID (PK, Autonumber) and DogName (text)
tblBreed with BreedID (PK, Autonumber) and Breed (text) and DogID
(link back to tblDog)
I am just trying to link these two tables together so I can list the
names and breeds of the dogs (pull together one field from each of the
two tables).
Now, is it "one dog can have many breeds" (one to many) or "many
breeds can be applied to one dog" (many to one)??
I have looked at many tutorials and still have problems figuring out
1) which one is the one and which is the many, 2) the proper type of
join type, 3) whether or not to check those darn cascade update/delete
buttons, and 4) which PK gets linked between the tables (does dogID go
in and get linked in both, or does breedID?).
Any help or tricks appreciated! I would like to move on past this, but
with every database I do, I can set the tables up, but when I try to
link them (create the relationship), I have trouble.
VR/
Lost
Getting wrapped around something basic:
I have 2 tables:
tblDog with DogID (PK, Autonumber) and DogName (text)
tblBreed with BreedID (PK, Autonumber) and Breed (text) and DogID
(link back to tblDog)
I am just trying to link these two tables together so I can list the
names and breeds of the dogs (pull together one field from each of the
two tables).
Now, is it "one dog can have many breeds" (one to many) or "many
breeds can be applied to one dog" (many to one)??
I have looked at many tutorials and still have problems figuring out
1) which one is the one and which is the many, 2) the proper type of
join type, 3) whether or not to check those darn cascade update/delete
buttons, and 4) which PK gets linked between the tables (does dogID go
in and get linked in both, or does breedID?).
Any help or tricks appreciated! I would like to move on past this, but
with every database I do, I can set the tables up, but when I try to
link them (create the relationship), I have trouble.
VR/
Lost