Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
chinmay7
Contributor II
Contributor II

set primary key on loaded table

Hi,

I am using two tables table A and Table B.

 

Table A contains below fields.

A,B,C

 

Table contains 

D,E

 

I want to join this two tables with inner join.

Like Columns E from table B inner join with column A or column B from Table A.

 

How to write or condition while doing inner join?

Labels (1)
1 Solution

Accepted Solutions
petter
Partner - Champion III
Partner - Champion III

Qlik does a natural join which means that the fields that are going to be matched have to have the same names so you don't use an ON clause like in SQL or a SQL WHERE-clause (if you use old-style joins).

You can still use a WHERE-clause for anything that is not meant to match / join the two tables.

View solution in original post

1 Reply
petter
Partner - Champion III
Partner - Champion III

Qlik does a natural join which means that the fields that are going to be matched have to have the same names so you don't use an ON clause like in SQL or a SQL WHERE-clause (if you use old-style joins).

You can still use a WHERE-clause for anything that is not meant to match / join the two tables.