In article <e7v0h1$2j8$(E-Mail Removed)>,
(E-Mail Removed) says...
> I have 3 Tables
> TblHorseDetails= HorseID,OwnerID,OwnerPercentage
> TblHorseInfo=HorseName
> TbleOwnerInfo=OwnersLastName, OwnersFirstName
>
> What am trying to do is put these together except HorseID and OwnerID which
> are there ID numbers
> When I do put them together in a Qry , I get Every Owner with every Horse
> with every percentage!
> It is not reconizing the Indivual Owner,Horse,percetage
> Thanks for your help, Bob
>
>
>
I would have 3 tables:
Horses
-------
horse_nbr INTEGER NOT NULLL PRIMARY KEY
horse_name VARCHAR (30)
Owners
-------
owner_nbr INTEGER NOT NULL PRIMARY KEY
last_name VARCHAR (30)
first_name VARCHAR (30)
HorseOwners
-----------
horse_nbr IINTEGER NOT NULL
owner_nbr INTEGER NOT NULL
ownership_begin DATETIME NOT NULL
ownership_end DATETIME
PRIMARY KEY (horse_nbr, owner_nbr)
This way you can have multiple owners of the same horse and ownership
over time. The current horse owner has ownership_end null. One of the
owners could buy out another this way too.