Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Qlik community members
I am in a fix and would really appreciate your help.
Does the joins in SQL and Qliksense occur in the same way.
I have a SQL query for example:
select
t1.A,
t2.B,
t1.C,
t1.D
from table t1, table t2
where t1.A=t2.A
and t1.C="hello"
result table is a hit with about 123 datapoints.
In qliksense when i try to extract the data using (data connections by the way) the data loaded is more than 123. The two tables are loaded individually and hence end up having 123 data points from table 1 and more than 123 datapoints from table 2. To mention additioonally i dont know how to implement the where codition for both the tables. do i join them first and then apply the where or how does it work. i am utterly confused.
please help
@happyfeet11 wrote:...do i join them first and then apply the where or how does it work...
YES, join first and then try using filtering with where clause. Because before, joining you can't compare one field from one table to another field from another table.
@happyfeet11 wrote:...do i join them first and then apply the where or how does it work...
YES, join first and then try using filtering with where clause. Because before, joining you can't compare one field from one table to another field from another table.
so do you mean i join the table via outer join
and apply the where conditions in a resident table and drop the original join or??