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

I need clarifications to joining tables

Dear all

            I have a parent table with 2 child tables.  There is a link between parent to child 1 and parent to child 2. But no link between  child 1  & child 2.

I want to join all tables into single table

I have done below steps

Table A

Load * from Parent

Left Join

Load * from Child 1

Table B

Load * from Parent

Left Join

Load * from Child 2

Result_Table

Load  * from Table A

concatenate

Load  * from Table B

From result table if call fields in straight table the data is coming like this

Product Factory Despatch Shipment No EXPCONTRACTID Qty Shipment Qty
230 230
Coco Peat Low EC600560001054532300
SHIPMENT 1600560001054530115
SHIPMENT 2600560001054530115

But result should come like

Desired output

Product Factory Despatch Shipment No EXPCONTRACTID Qty Shipment Qty
230 230
Coco Peat Low ECSHIPMENT 160056000105453230115
Coco Peat Low ECSHIPMENT 260056000105453230115

Regards Vignesh

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Try This

TableTot:

Load * from Parent;

Left Join

Load * from Child 1;

Left Join

Load * from Child 2;

Let me know

preminqlik
Specialist II
Specialist II

try this

Load parent,

child1

from path;

concatenate

Load parent,

child2

from path;