Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
pawwy1415
Creator III
Creator III

Join help

Hi Experts,

Can any one please help me on below requirement,

In my oracle query i have Cross join

In qlik which join need to use for replication above Cross join logic.

Thanks in advance.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Default join in qlik is cross join. For that, you can leave join alone, like:

Table1

Join

Table2

View solution in original post

3 Replies
niclaz79
Partner - Creator III
Partner - Creator III

Hi,

I believe an inner join would create the cross join result for Qlik.

tresesco
MVP
MVP

Default join in qlik is cross join. For that, you can leave join alone, like:

Table1

Join

Table2

keerthika
Creator II
Creator II

Hi kumar,

If two tables doesn't have any common columns you can just load that two tables or use join between them both performs cross join.

Load VLK_DESK_SCOPE_VW;

load VLK_RISK_FACTOR_MVW;


Load VLK_DESK_SCOPE_VW;

join (VLK_DESK_SCOPE_VW)

load VLK_RISK_FACTOR_MVW;


Both gives same result


Thanks,

Keerthika