E
EAB1977
Hello everyone,
I have a query that appears that the join is not working correctly. I
have a Access 2000 db that is in Access 2003 SP3. I am trying to
return records for all employees against a weight factor table so I
can create a report in Excel. When I run this query, I get the same
amount of records no matter what what type of join I try. I am getting
frustrated and need some other eyes to look at this.
SELECT WF.ProductLineCode, WF.UserName
FROM tblWeightFactor AS WF RIGHT JOIN tblEmployee AS EMP ON
WF.UserName = EMP.UserName
WHERE (((WF.CompleteDate) Between #12/29/2008# And #12/29/2008#) AND
((EMP.IsCQATech)=True));
I have a query that appears that the join is not working correctly. I
have a Access 2000 db that is in Access 2003 SP3. I am trying to
return records for all employees against a weight factor table so I
can create a report in Excel. When I run this query, I get the same
amount of records no matter what what type of join I try. I am getting
frustrated and need some other eyes to look at this.
SELECT WF.ProductLineCode, WF.UserName
FROM tblWeightFactor AS WF RIGHT JOIN tblEmployee AS EMP ON
WF.UserName = EMP.UserName
WHERE (((WF.CompleteDate) Between #12/29/2008# And #12/29/2008#) AND
((EMP.IsCQATech)=True));