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: 
Not applicable

Join in QV script

Hi,

could anyone translate following sql into qv:

left join table2fieldX on table2fieldA=table1fieldB and table2fieldC = string?

I want to load from QVD's and make the join there.

Kr,

Daniel

1 Solution

Accepted Solutions
rajeshvaswani77
Specialist III
Specialist III

mytable:

LOAD

*,

fieldA as Link

from table1;


left join (mytable)

LOAD

fieldB as Link,

fieldC

from table2 where fieldC=string;


thanks,

Rajesh Vaswani



View solution in original post

4 Replies
rajeshvaswani77
Specialist III
Specialist III

mytable:

LOAD

*,

fieldA as Link

from table1;


left join (mytable)

LOAD

fieldB as Link,

fieldC

from table2 where fieldC=string;


thanks,

Rajesh Vaswani



Not applicable
Author

Thanks a bunch! You're a life saver!

rajeshvaswani77
Specialist III
Specialist III

Hi Daniel,

Could you please mark as correct answer or helpful answer.

regards,

Rajesh Vaswani

Not applicable
Author

Sorry,

here you go.