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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
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