If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hi All,
Sql: select a,b,c from table1
left join
(select c,d,e from table2)t2
on (b>d or a=e)
How to write the above joining condition in qlik sense script.
Thanks in advance,
Santosh
tab1:
sql select a,b,c from table1;
left join
sql select c,d,e from table2;
tab2:
noconcatenate
load * resident tab1 where b>d or a=e;
drop table tab1;
Hi
Try this,
Select Table1.A,
Table1.B,
Table1.C,
Table2.D,
Table2.E
From Table1
Left Join Table2
On B >D
Or A = E