Hi,
is here anyone who is usin method from this link?
https://www.tek-tips.com/viewthread.cfm?qid=843676
The method is for handling nulls in joins.
i do not why this is not working for me.
How this sql should look like with clause for empty rows?
Best,
Jacek
is here anyone who is usin method from this link?
https://www.tek-tips.com/viewthread.cfm?qid=843676
The method is for handling nulls in joins.
i do not why this is not working for me.
How this sql should look like with clause for empty rows?
Code:
UPDATE [A]
INNER JOIN [B] ON ([A].Date = [B].Date) AND ([A].[Band] = [B].[Band]) AND ([A].Company = [B].Company) AND ([A].State = [B].State) AND ([A].[SAE Suffix] = [B].[SAE Suffix]) AND ([A].[SAE Root] = [B].[SAE Root])
SET [A].Qty = [B]!Qty;
Best,
Jacek