Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
brijeshvma
Partner - Creator
Partner - Creator

How to join two table based on Where Condition -- Urgent

Hi All

I have two table :

FirstTable:

A,

B,

C,

D

From Firstable;

SecondTable:

A

B

From SecondTable;

I want to join this tow table when FirstTable.B=SecondTable.B

Kindly help me on this

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this.

Load A,B,C,D From Table1

Left join

Load B,A as Table2A

From Table2;

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Kushal_Chawda

FirstTable:

load

A,

B,

C,

D

From Firstable;

inner join

load

A as a

B

From SecondTable;

Digvijay_Singh

Something like -


FirstTable:

Load A,B,C,D

From Firstable;


Left join(FirstTable)


Load A,B

From SecondTable


Where Exists (B)