Two foreign keys to one primary key
779945Jun 17 2010 — edited Jun 17 2010I'm having trouble displaying information for two foreign keys in my table. My goal is to display the first and last name of both a Project Manager and Account Manager. I have a "Jobs" table linked to an "Employees" table.
Jobs
ProjectMgrID
AcctMgrID
Employees
EmployeeID
LastName
FirstName
Both ProjectMgrID(fk) and AcctMgrID(fk) are linked to EmployeeID(pk). When I build a query, I am not sure how to display both the FirstName and LastName fields for both. It only allows me to add them once, and when I add them twice it just displays the same information twice.
Please help!