M
Mavis
Hi All,
I have the below update query but when i try to run the query, no row is
update. Not sure what is wrong. The code look correct to me. Please help me.
UPDATE TBLCargoClaims INNER JOIN (TBL_Daily_Exchange_Rate INNER JOIN
TBLValueClaim ON (TBL_Daily_Exchange_Rate.Exchange_Rate_Date =
TBLValueClaim.Valuable_ROE_Date) AND (TBL_Daily_Exchange_Rate.ExchangeRate =
TBLValueClaim.ValuableROE) AND (TBL_Daily_Exchange_Rate.CurrencyCode =
TBLValueClaim.ClaimCurrency)) ON (TBLCargoClaims.BillofLading =
TBLValueClaim.BillOfLading) AND (TBLCargoClaims.ID =
TBLValueClaim.ClaimNumber)
SET TBL_Daily_Exchange_Rate.CurrencyCode = [TBLValueClaim].[ClaimCurrency],
TBL_Daily_Exchange_Rate.Exchange_Rate_Date =
[TBLValueClaim].[Valuable_ROE_Date], TBL_Daily_Exchange_Rate.ExchangeRate =
[TBLValueClaim].[ValuableROE]
WHERE (((TBLCargoClaims.ClaimStatus)<>"Closed"));
I have the below update query but when i try to run the query, no row is
update. Not sure what is wrong. The code look correct to me. Please help me.
UPDATE TBLCargoClaims INNER JOIN (TBL_Daily_Exchange_Rate INNER JOIN
TBLValueClaim ON (TBL_Daily_Exchange_Rate.Exchange_Rate_Date =
TBLValueClaim.Valuable_ROE_Date) AND (TBL_Daily_Exchange_Rate.ExchangeRate =
TBLValueClaim.ValuableROE) AND (TBL_Daily_Exchange_Rate.CurrencyCode =
TBLValueClaim.ClaimCurrency)) ON (TBLCargoClaims.BillofLading =
TBLValueClaim.BillOfLading) AND (TBLCargoClaims.ID =
TBLValueClaim.ClaimNumber)
SET TBL_Daily_Exchange_Rate.CurrencyCode = [TBLValueClaim].[ClaimCurrency],
TBL_Daily_Exchange_Rate.Exchange_Rate_Date =
[TBLValueClaim].[Valuable_ROE_Date], TBL_Daily_Exchange_Rate.ExchangeRate =
[TBLValueClaim].[ValuableROE]
WHERE (((TBLCargoClaims.ClaimStatus)<>"Closed"));