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

Where clause load comparing two tables field in Qlikview


Hi All,

How can we compare two same fields across table 1 and table 2 and load the same in Qlikview like below script?

EG.,

Table1:

LOAD *;
SELECT A, B;
FROM Table1
WHERE Table1.A = Table2. A;

Thanks,

Swathi

11 Replies
Not applicable
Author

Thanks All...

pho3nix90
Creator II
Creator II

This is possible if Table 1 already exists and you need to limit table 2.

LOAD

     *

FROM Table2

WHERE Exists(A);