Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Question regarding key in left join

Hello all!

I think this is an easy question for you. What key is used in this left join? Both CurrencyCode and %CurrPeriod? or one of them?

Br,

Cristian



tmpTable:
LOAD Product, Date, %CurrPeriod,CurrencyCode, InvoicedValue
FROM qvd\ODS.qvd (qvd);
PrimeConv:
LOAD CurrencyCode, %CurrPeriod,round(AverageRate, 0.0001) as Rate
FROM qvd\Currency.qvd (qvd);
LEFT JOIN (tmpTable)
LOAD * RESIDENT PrimeConv;
DROP TABLE PrimeConv;


2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

All identical field names will be used as join keys. In your example, it looks like both fields will be used as join keys.

Not applicable
Author

In Left Join , it will work like full outer join and match the indentical keys fro join......

As Oleg told i think both the field will work