Skip to main content
Announcements
YOUR OPINION MATTERS! Please take the Qlik Experience survey you received via email. Survey ends June 14.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

integrating tables

Hi,

I need to join 2 tables in the script in the following way:

Table1 includes Field1 with the values 1,2,3.

Table2 includes Field2 with the values a,b,c.


I need to create Table3 which integrates Field1 and Field2 in the following way:

Field1 Field2

1 a

1 b

1 c

2 a

2 b

2 c

3 a

3 b

3 c


How can I do it?


Thank you in advance,


Larisa

1 Solution

Accepted Solutions
swuehl
MVP
MVP

A simple JOIN should do.

LOAD Field1

FROM FIELD1TABLE;

JOIN

LOAD Field2

FROM FIELD2TABLE;

View solution in original post

4 Replies
swuehl
MVP
MVP

A simple JOIN should do.

LOAD Field1

FROM FIELD1TABLE;

JOIN

LOAD Field2

FROM FIELD2TABLE;

Colin-Albert

Table1:

load

Field1

from ..... ;

join (Table1)

load

Field2

from .... ;

sathishkumar_go
Partner - Specialist
Partner - Specialist

Hi,

Table3:

load field1 from Table1;

join (Table3)

load field2 from Table2;

-Sathish

Anonymous
Not applicable
Author

Thank you!