Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is there anyway to Join daata coming from a QVD File to data coming from SQL Query?
Thxs
Hi,
Try like this
Table1:
SQL Select KeyField, * from tableName;
LEFT JOIN(Table1)
LOAD
KeyField,
*
FROM FileName.QVD;
Hope this helps you.
Regards,
Jagan.
Hi,
Try like this
Table1:
SQL Select KeyField, * from tableName;
LEFT JOIN(Table1)
LOAD
KeyField,
*
FROM FileName.QVD;
Hope this helps you.
Regards,
Jagan.
Great help..
Thxs