Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Relating 3 tables

Status
Not open for further replies.

PeggyBall

Technical User
Oct 30, 2006
19
US
Hello,
I am new to Access and creating a database which includes personal information (name, address, phone, etc), officer position held and year, and awards earned and when. I have the following tables:

tblContact
Name
Address
Spouse
Email
Phone

tblAwards
AwardName (one row for each award - Merit, Excellence, etc)
AwardDescription
Year

tblOfficer
President
VicePresident
Secretary
Treasurer
Current (yes/no)
Year

Each person can earn more than one award and serve in more than one office. I want to link the tables (or should it really be one table rather than 3) and print a report showing current officers, past officers and when each person received an award.

I appreciate any help!
 
tblContacts looks OK

tblAwards looks OK

tblOfficer
OfficeTitle (President, etc)

tblContactAward
ContactName (key to tblContacts) *
AwardName (key to tblAwards) *
DateOfAward *

The * fields constitute your primary key. Alternately, you can add an identifier ContactAwardID to be the unique key.

tblContactOfficer
ContactName *
OfficeTitle *
OfficeHeldStartDate *
OfficeHeldEndDate

Again, the * fields constitute your primary key. Alternatively, you can also add an identifier as above.

-------------------------
The trouble with doing something right the first time is that nobody appreciates how difficult it was - Steven Wright
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top