I want to implement a join in QlikView, similar to the below SQL query:
select tableA.*, tableB.column3
from tableA , tableB
where (tableA.column1=tableB.column1 or tableA.column2=tableB.column2);
Any inputs how this can be done in QV while loading the dashbard? One option is to use similar query as above in the QVD loader in the SQL statement, wanted to check if this can be done after the QVD load.
Load tableA.*; tableB.column3 resident tableA, tableB where (tableA.column1 = tableB.column1) OR (tableA.column2=tableB.column2);
Drop Tables tableA, tableB; // If need to drop then you will do
Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful