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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Joining data on two tables

I have Two Load Statements as below

[Table1]:

Load a,b,c,d from ...;

[Table2]:

Load a,b,d,e,f from ....;

Can we write a statement where table3 which holds a,b,c,d,e,f [ I tried to create a new table3 using JOIN between table1 and table2  what i have found the issue was im able to see the null values for c,d / e,f . My Intention is i don't want to have nulls i want full data for a,b,c,d,e,f columns.

i want to merge vertically of Two tables like from table1 (a,b,c,d) columns with table2 ( e,f) columns.

--Rams

6 Replies
OmarBenSalem
Partner - Champion II
Partner - Champion II

if you want to just keep the exsting combination btwn the 2 table; use inner join

OmarBenSalem
Partner - Champion II
Partner - Champion II

[Table1]:

Load a,b,c,d from ...;

inner join(Table1)

Load a,b,d,e,f from ....;

Anonymous
Not applicable
Author

Omar, Thanks for the response.

I tried it But Still giving Nulls for the other columns.

MK9885
Master II
Master II

OmarBenSalem
Partner - Champion II
Partner - Champion II

you sure about that??

Anonymous
Not applicable
Author

Will share the screenshot, if possible.

As it is sensitive data will let you know.