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

Getting not maching row of a table

Hi,

I want those rows from the first table which has no matching rows exits in second table:

Thanks

8 Replies
Not applicable
Author

Use joins

Not applicable
Author

http://community.qlik.com/forums/t/17453.aspx.. kindly go through this llink. in that link attached a document refer that one.

hope it helps u

Not applicable
Author

http://community.qlik.com/forums/t/17453.aspx

Not applicable
Author

or you can use

where not exists()

Not applicable
Author

Hi,

I am not getting what exactly you are trying to say. I want the do the following operation:

[SQL Statement 1]
MINUS
[SQL Statement 2]

Not applicable
Author

Hi,

I am not getting what exactly you are trying to say. I want the do the following operation:

[SQL Statement 1]
MINUS
[SQL Statement 2]

Not applicable
Author

Im also new in QV. Hope you get something from here.


table1:
load * from sample1;
table2:
load * from sample2
where not exists(id_field);


Or in join()


table1:
load * from sample1;
table2:
outer join(table1)
load * from sample2;


If i wrote something wrong please correct me.

Not applicable
Author

i recommend it to see from Qlikview help.