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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Search Field

Hi

I have a Field with the values 1 and 2. They are for the DB1 and DB2. These two DB should be the same.

Now I would like to filter them. It should show me all values whiche are in DB2 and not in DB1.

1 Reply
Not applicable
Author

Hi,

  While loading your data you can use where not exists () function in your load statement.Hope this will help

Load *,

        DB As DB1

From My_table;

Load *,

      DB As DB2

From My_table1

Where not exists(DB,DB1)