Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

join 2 tables based on same id

hI,

I am having 2 tables wit same id.how to join that 2 tables based on id. shall i use join or mapping function...

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

load fields from tables like this:

LOAD

"Table1_id" as [ID]

....

LOAD

"Table2_id" as [ID]

...

just give the fields you want to join the same name.

Regards

View solution in original post

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

   No need to use join or mapping.

   Load both the table. Qlikview will automatically join based in similar names in both the tables.

   By default qlikview uses outter join.

Regards,

Kaushik Solanki

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

Hi,

load fields from tables like this:

LOAD

"Table1_id" as [ID]

....

LOAD

"Table2_id" as [ID]

...

just give the fields you want to join the same name.

Regards

Not applicable
Author

YEAH ITS WORKING...