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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join load limited to primitive table values

Hi, this script creates a fourth row in table 'A' with an empty HOTEL.

A:
LOAD * INLINE [
CODE, HOTEL
1,BPT,
2,BPJ,
14,BSA];

JOIN LOAD * INLINE [
CODE, SALE
1,100,
2,125,
14,85,
10,250
];

How could I JOIN LOAD the SALES of CODE '1','2' and '14' FROM the information in second table without adding any new row?

Thanks

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try a

LEFT JOIN LOAD

Or look into a mapping solution.

View solution in original post

1 Reply
swuehl
MVP
MVP

Try a

LEFT JOIN LOAD

Or look into a mapping solution.