Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Inner Join

We have 2 tables namely INVOICE(with fields invoice no, contract no, invoice weight(kg)) and CONTRACT(with fields contract no , contract weight(kg)). How we can perform an inner join to merge the two tables? Plz send the codes for the above.

Labels (1)
1 Reply
Not applicable
Author

user the inner join command.

LOAD

....

from tableA

INNER JOIN

LOAD

...

from tableB

The inner join will be based on the common field name. In this case, the Contract No.