G
Guest
Hi, there I'm a newbie at access and would appreciate some help.
I'm trying to select rows from the preadate table that are not in the
shipdate table (which I can do, see sql view below)) but I need to drill down
further, by only omitting records that the shipdate is less than or equal to
the preadate(for each record)
SELECT testpreadate.abc, testpreadate.MODEL, testpreadate.PREDATE
FROM testpreadate LEFT JOIN testshipdate ON testpreadate.abc =
testshipdate.abc
WHERE (((testshipdate.abc) Is Null));
Any help woul be appreciated.
I'm trying to select rows from the preadate table that are not in the
shipdate table (which I can do, see sql view below)) but I need to drill down
further, by only omitting records that the shipdate is less than or equal to
the preadate(for each record)
SELECT testpreadate.abc, testpreadate.MODEL, testpreadate.PREDATE
FROM testpreadate LEFT JOIN testshipdate ON testpreadate.abc =
testshipdate.abc
WHERE (((testshipdate.abc) Is Null));
Any help woul be appreciated.