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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

IN Logic in qliksense

Hi All,

 

How to write below query in script:

select ID from A
where A.ID IN ( select ID from B)

Labels (1)
1 Solution

Accepted Solutions
MarcoWedel

table1:
LOAD ID from B;

table2:
LOAD ID from A
where Exists(ID);

Drop Table table1;

View solution in original post

2 Replies
MarcoWedel

table1:
LOAD ID from B;

table2:
LOAD ID from A
where Exists(ID);

Drop Table table1;

Mahamed_Qlik
Specialist
Specialist
Author

Thanks Marco