Hi,
I have 3 tables. I want to delete all records from the Reply_work table where they match the Call_req table and the last mod date in the call_req table is later than the date in the tbl_refreshdate. It used to work, but for some reason i am now getting the above error. Any ideas? the sql is below.
nikki
DELETE tbl_Reply_Work
FROM tbl_Reply_Work INNER JOIN AHD_call_req ON tbl_Reply_Work.ref_num = AHD_call_req.ref_num
WHERE (((AHD_call_req.last_mod_dt)>(SELECT tbl_refreshdate.date FROM tbl_refreshdate)));
I have 3 tables. I want to delete all records from the Reply_work table where they match the Call_req table and the last mod date in the call_req table is later than the date in the tbl_refreshdate. It used to work, but for some reason i am now getting the above error. Any ideas? the sql is below.
nikki
DELETE tbl_Reply_Work
FROM tbl_Reply_Work INNER JOIN AHD_call_req ON tbl_Reply_Work.ref_num = AHD_call_req.ref_num
WHERE (((AHD_call_req.last_mod_dt)>(SELECT tbl_refreshdate.date FROM tbl_refreshdate)));