O
Opal
I am trying to create a query
that will show me all the records in
my qryZoneProcess even if there
is no match in my EMPInfo table.
I have the following SQL:
SELECT DISTINCTROW EMPInfo.SUPLink,
qryZoneProcess.ZoneProcessID,
qryZoneProcess.Process, qryZoneProcess.TLGroupID,
EMPInfo.LastName
FROM EMPInfo LEFT JOIN qryZoneProcess
ON EMPInfo.ProcessID = qryZoneProcess.ZoneProcessID
WHERE (((EMPInfo.SUPLink)=
[Forms]![HoldingInfo]![txtHoldSUPNumber])
AND ((qryZoneProcess.TLGroupID)=2));
To get my desired results the query, above,
should produce 6 records, 3 with Employee names
and 3 without. I only get 3 with Employee names.
What am I missing?
that will show me all the records in
my qryZoneProcess even if there
is no match in my EMPInfo table.
I have the following SQL:
SELECT DISTINCTROW EMPInfo.SUPLink,
qryZoneProcess.ZoneProcessID,
qryZoneProcess.Process, qryZoneProcess.TLGroupID,
EMPInfo.LastName
FROM EMPInfo LEFT JOIN qryZoneProcess
ON EMPInfo.ProcessID = qryZoneProcess.ZoneProcessID
WHERE (((EMPInfo.SUPLink)=
[Forms]![HoldingInfo]![txtHoldSUPNumber])
AND ((qryZoneProcess.TLGroupID)=2));
To get my desired results the query, above,
should produce 6 records, 3 with Employee names
and 3 without. I only get 3 with Employee names.
What am I missing?