Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Selecting records from a table which are not present in other


Hi,

I have 2 qvd files and want to select records from a qvd file which are not present in other.

Lets say:

Table 1 :

Column1Column2
A12
B14
C15
D20
E45

Table 2:

Column1Col2
A7
B8
E9

What i want is records C, D from table A.

Thanks

1 Solution

Accepted Solutions
VishalWaghole
Specialist II
Specialist II

Hi Pallavi,

Try this code,

Table2:
LOAD Column1,
     Col2
FROM
[http://community.qlik.com/thread/112713]
(html, codepage is 1252, embedded labels, table is @2);

Table1:
LOAD Column1,
     Column2
FROM
[http://community.qlik.com/thread/112713]
(html, codepage is 1252, embedded labels, table is @1)
Where not Exists (Column1,Column1);

DROP Table Table2;

and please refer attached file, it will help you.

- Regards,

Vishal Waghole

View solution in original post

5 Replies
Not applicable
Author

You can try using Not exists() function.

Something like this might be of help:

http://community.qlik.com/message/492029

Gysbert_Wassenaar

Temp:

Load * from table2.qvd (qvd);

Table1:

noconcatenate

Load * from table1.qvd(qvd) where not exists(Column1);

Drop table Temp;


talk is cheap, supply exceeds demand
VishalWaghole
Specialist II
Specialist II

Hi Pallavi,

Try this code,

Table2:
LOAD Column1,
     Col2
FROM
[http://community.qlik.com/thread/112713]
(html, codepage is 1252, embedded labels, table is @2);

Table1:
LOAD Column1,
     Column2
FROM
[http://community.qlik.com/thread/112713]
(html, codepage is 1252, embedded labels, table is @1)
Where not Exists (Column1,Column1);

DROP Table Table2;

and please refer attached file, it will help you.

- Regards,

Vishal Waghole

MK_QSL
MVP
MVP

Load Column1, Col2 From ....

Load Column1, Column2 from.... where not exists(Column1);

Not applicable
Author

Yes, not exists working..Thank you all..:)