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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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.

Labels (1)
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.