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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
nikhilgarg
Specialist II
Specialist II

Join

I have 3 tables.

I put:

Table 1 Right Join Table2;

Table3  Right Join Table 2;

Now how can i make  output of Table1 (right join) output of Table3 ?

thanks

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Table1:

LOAD * FROM Source1

right join (Table1)

LOAD * FROM Source2

right join (Table1)

LOAD * FROM Source3


talk is cheap, supply exceeds demand
nikhilgarg
Specialist II
Specialist II
Author

Hey,

I mean :

Table1:

LOAD * FROM Source1

right join (Table1)

Table2:

LOAD * FROM Source2

then i do

Table3:

LOAD * FROM Source3

right join (Table2)

LOAD * FROM Source2

Now , how can i do Resultant Table1   right join Resultant Table3  because i think i have to reload all data again ?