Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
VijaySekar
Contributor II
Contributor II

Is possible to JOIN a sql table with a QVD file?

I have a sql table and i need to do a left join with a QVD file based on a key column. Is it possible? If so can anyone guide me on this please?

 

Thanks

Labels (2)
1 Solution
5 Replies
Or
MVP
MVP

Same as you would join any two Load statements.

Load * From SomeQVD;

JOIN

Load *;

Select * From SomeTable;

VijaySekar
Contributor II
Contributor II
Author

How should i mention the join condition?

Or
MVP
MVP

There is no join condition. Joins are automatically based on fields with identical names (case-sensitive). Again, this is true for all Qlik joins regardless of source.

VijaySekar
Contributor II
Contributor II
Author

What happens if we have 3 identical columns?

Which column will it take?

 

Thanks