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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Yashwanth_
Contributor
Contributor

Where clause

Hi, 

i have 2 tables like 

Table1:

Load 

id, name, region, state, sales 

from *** .qvd;

Table2:

Load 

custid, custname, orderid, orderstatus 

from ***.qvd;

 

I want to have a where condition from both the tables for example i want region from table 1 and orderstatus from table2.

Like where region = '  XXX ' and orderstatus = 'XXX '.

Can anyone help me with this.

Thanks Yashwanth.

1 Reply
PapaJapa
Contributor II
Contributor II

Hi. You can use where condition in two tables. 

Table1:

Load 

id, name, region, state, sales 

from *** .qvd

where region = '  XXX ' ;

Table2:

Load 

custid, custname, orderid, orderstatus 

from ***.qvd

where orderstatus = 'XXX ';