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

concatenate the intersected data

Hi,

I want to concatenate 2 qvds with intersected data.

I have 2 qvds. Both contain same field.

I want to load qvd2 with all data but load only intersected data from qvd1 . then i want to concatenate both qvds.

urget reply needed.

1 Reply
deepakk
Partner - Specialist III
Partner - Specialist III

HI rajni,

Use the Exists function or use inner join to make interaction between two qvds

eg:

Load * from A.

concatenate

Load

* from B where exists(PrimaryKey,PrimaryKey)

-----------------------------------------------------------------------

Load

* from A;

inner join

Load

* from B;