Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I have a SQL code, for example:
Select Column 1 from Table1 where
Column2 IN (select column3 from table 2)
I want to achieve this through qlik code.
Can someone help here plz...
Aatish
Hi @aatish12345 :
May be like this:
Table1:
Load
column3
from table 2;
Table2:
Load
Column 1 from Table1 where exists (column3 ,Column2);
Drop table Table1;
Hi Atish,
You can achieve the same by using the where Exist script function.
Please go through with the below link for example.
Hi @aatish12345 :
May be like this:
Table1:
Load
column3
from table 2;
Table2:
Load
Column 1 from Table1 where exists (column3 ,Column2);
Drop table Table1;