R
rob
All
To easier explain my problem I'm making up the following example:
Suppose you have a Table of Referees (PKID, LName, FName)
- Each game you play requires two referees (Head Referee and Assistant
Referee); any ref can hold either position, but it is important to know who
held what position.
Suppose you have a Game table (PKID, Head Ref, Assistant Ref, Game, date,
etc)
I add the PKID from table Referees into the Game Table (Head Ref, Assistant
Ref), but when I try to view the info in a query, it does not work.
In a nutshell, the game table needs two records from the referee table....
I got around this problem by creating two referee tables - but that means
duplicating records (and updating two tables).
What am I doing wrong? I cannot find any examples online or in any of my
old programming/database books.
Any help would be appreciated.
Rob
To easier explain my problem I'm making up the following example:
Suppose you have a Table of Referees (PKID, LName, FName)
- Each game you play requires two referees (Head Referee and Assistant
Referee); any ref can hold either position, but it is important to know who
held what position.
Suppose you have a Game table (PKID, Head Ref, Assistant Ref, Game, date,
etc)
I add the PKID from table Referees into the Game Table (Head Ref, Assistant
Ref), but when I try to view the info in a query, it does not work.
In a nutshell, the game table needs two records from the referee table....
I got around this problem by creating two referee tables - but that means
duplicating records (and updating two tables).
What am I doing wrong? I cannot find any examples online or in any of my
old programming/database books.
Any help would be appreciated.
Rob