I found a couple of threads that partly addressed my question but still was not able to make the solutions work for my particular situation.
I need something like the following:
SELECT * FROM tblNames (join type tblDates...)
WHERE (SELECT max(DeliveryDate)
FROM tblDates)
WHERE tblNames.NameID = tblDates.NameID
The result is all the names and all the deliverydates for each name, not just the most recent one.
Can anyone steer me in the right direction on this?
Thanks,
Vie
I need something like the following:
SELECT * FROM tblNames (join type tblDates...)
WHERE (SELECT max(DeliveryDate)
FROM tblDates)
WHERE tblNames.NameID = tblDates.NameID
The result is all the names and all the deliverydates for each name, not just the most recent one.
Can anyone steer me in the right direction on this?
Thanks,
Vie