M
mcnews
is there a better way to design this query?
SELECT DISTINCT tblSpecimenLog.ASTRO, tblSpecimenLog.PDSpecID,
tblSpecimenLog.BatchID, tblSpecimenLog.PatientID, tblSpecimenLog.DASH
FROM tblSpecimenLog LEFT JOIN qrySpecimenExtracts ON
left(tblSpecimenLog.PDSpecID,10) =
left(qrySpecimenExtracts.pdspecid,10)
ORDER BY tblSpecimenLog.PDSpecID;
it seems to work ok, but design view doesn't like the join being made
on the left() function.
thanks,
mcnews
SELECT DISTINCT tblSpecimenLog.ASTRO, tblSpecimenLog.PDSpecID,
tblSpecimenLog.BatchID, tblSpecimenLog.PatientID, tblSpecimenLog.DASH
FROM tblSpecimenLog LEFT JOIN qrySpecimenExtracts ON
left(tblSpecimenLog.PDSpecID,10) =
left(qrySpecimenExtracts.pdspecid,10)
ORDER BY tblSpecimenLog.PDSpecID;
it seems to work ok, but design view doesn't like the join being made
on the left() function.
thanks,
mcnews