Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
two table are present in the database both have the same field but with different names.
how will i join both(table name- summary_pcs and x)
test:SQL SELECT * FROM summary_pcs;//store Qlikview Table from memory to diskstore test into E:\qlikview\test.qvd (qvd);LOADCHARGING_PROFILE_TYPE_ID,timestamp(EVENT_DATE,'DD/MMYY'),CONTENT_PROFILE_ID,CONTENT_ID,APC_QUERY_NOT_OK_COUNTFROM test.QVD (QVD);
Hello,
I feel I'm missing something, anyway, a join should look like
TablefromDatabase:LOAD KeyField, Field1, Field2;SQL SELECT KeyField, Field1, Field2FROM Table1; TablefromFile: // Not needed, used for clarifying codeINNER JOIN LOAD FileFieldKey AS KeyField, Field3, Field4FROM File.qvd (qvd);
Renaming the field will allow you to join correctly both tables.
Hope this helps