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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to exclude data available from other table

I was trying to load a table using SQL join , but its seems this is not supported.

is there any other way to do it during the load

Table1                                 Table2

Date|Name|X|S                  Date|Z

I would like to load all data in table1 but to exclude the matched records in table2.

How can I achieve this?

1 Solution

Accepted Solutions
Not applicable
Author

Thank you Marcio.

This was not right solution.

I managed to solve this by using resident and where not exists.

View solution in original post

4 Replies
Anonymous
Not applicable
Author

[Table1]:

Load Date, Name, X, S

from [YourTable1];

concatenate(Table1)

Load Date, Z

from [YourTable2]

where not exists(Date);

Anonymous
Not applicable
Author

Try this:

Not applicable
Author

Thank you Marcio.

This was not right solution.

I managed to solve this by using resident and where not exists.

Anonymous
Not applicable
Author

ok