Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join Tables

Hey guys, I have a doubt.

I want to make a join between two tables, but without a key, for example (Table A + Table B = Table C):


A:

ItemPrice
12,95
21,88

B:

Store
Store_1
Store_2
Store_3
Store_4
Store_5

C:

StoreItemHeader 3
Store_112,95
Store_121,88
Store_212,95
Store_221,88
Store_312,95
Store_321,88
Store_412,95
Store_421,88
Store_512,95
Store_521,88
1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi Luiz,

LOAD * From B;

Left Join

LOAD * From A;

Regards,

Antonio

View solution in original post

1 Reply
antoniotiman
Master III
Master III

Hi Luiz,

LOAD * From B;

Left Join

LOAD * From A;

Regards,

Antonio