I am working on creating a query to base a form on. I've done it several times in this database, but today, for some reason I cannot figure out how to do it.
I believe this is how I did it before but it looks like the SQL statement got wonky:
Basically I have a look up table and all I'm doing is making it so I don't see the Cert ID it just pops up with the description. Am I over thinking this doing it wrong??
I believe this is how I did it before but it looks like the SQL statement got wonky:
Code:
SELECT tblEmpInfo.EmpInfoID, tblEmpInfo.EmpIDFK, tblEmpInfo.JobNumberFK, tblEmpInfo.EmpType AS Expr1, tblEmpInfo.CraftCode AS Expr2, tblJobs.JobSite
FROM tblJobs INNER JOIN tblEmpInfo ON tblJobs.JobNum = tblEmpInfo.JobNumberFK;
Basically I have a look up table and all I'm doing is making it so I don't see the Cert ID it just pops up with the description. Am I over thinking this doing it wrong??