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

finding only tada not found in other table

Hi,

I have 2 qvds. Both contain same field.

In qvd1, There is data that is only according to created date .

But In Qvd2 , There is data according to change date.

there is a key that is commom in both table.

I want to fetch only data from qvd1 that do not exist in qvd2 according to the key.

All data in qvd1 are not changed , So qvd2 contain only little data.

1 Reply
Anonymous
Not applicable
Author

Hi,

Keep (Look at syntax in F1-help) should help you with that.

Example:

QVTab1:

select * from Table1;

QVTab2:

left keep select * from Table2;

This will load all rows from Table1 and the intersecting part from Table2.