I am looking to link two tables as I would like to have reports generated with info from those two tables.
tblEmpInfo
EmpInfoID <PK>
EmpIDFK <FK>
Jobsite<FK>
tblEmpRating
EmpRatingID <PK>
EmpIDFK <FK>
EffectiveDate
SuperID
CraftCode
StatusChange
What I would like to do is have those two tables joined somehow so I can pull info from the latest status change with a date. Can I do a join query so they are joined by the EmpID? Or should I add the EmpInfoID to the tblEmpRating and join them that way?
Thanks for your help!
tblEmpInfo
EmpInfoID <PK>
EmpIDFK <FK>
Jobsite<FK>
tblEmpRating
EmpRatingID <PK>
EmpIDFK <FK>
EffectiveDate
SuperID
CraftCode
StatusChange
What I would like to do is have those two tables joined somehow so I can pull info from the latest status change with a date. Can I do a join query so they are joined by the EmpID? Or should I add the EmpInfoID to the tblEmpRating and join them that way?
Thanks for your help!