Please help. I have the following query that runs in access and I need to
make it run directly on SQL Server 2K. I did not build this access query and
I have never used a join quite like this. Any help would be appreciated.
UPDATE tblItm
INNER JOIN (ItmStr INNER JOIN StrReqRvw ON
(StrReqRvw.StNo = ItmStr.StrNo) AND
(ItmStr.UPC = StrReqRvw.UPC)) ON tblItm.UPC = StrReqRvw.UPC
SET ItmStr.StrReqQty = 0
WHERE (((StrReqRvw.ReqDt) Like '11/04/02')
AND ((tblItm.StckFlg)<>"SQ" And (tblItm.StckFlg)<>"PR"));
Thanks
Stacey