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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Join data from a QVD to data from SQL Table

Hi,

Is there anyway to Join daata coming from a QVD File to data coming from SQL Query?

Thxs

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Table1:

SQL Select KeyField, * from tableName;

LEFT JOIN(Table1)

LOAD

     KeyField,

     *

FROM FileName.QVD;

Hope this helps you.

Regards,

Jagan.

View solution in original post

2 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Table1:

SQL Select KeyField, * from tableName;

LEFT JOIN(Table1)

LOAD

     KeyField,

     *

FROM FileName.QVD;

Hope this helps you.

Regards,

Jagan.

Not applicable
Author

Great help..

Thxs