Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Newbie here, and need help with linking fields

2 Replies
Not applicable
Author

Can you be more specific and provide an example?

Anonymous
Not applicable
Author

Below 2 basic points should get you started:

  1. QlikView joins tables based on field names.
  2. QlikView is case sensitive and the columns from the database needs to be referenced in upper case.


Below example should make it clear:

load PRIMARYKEY1 as ID,

VALUE1 as Value1

sql select primarykey1,

value1

from table1;

load PRIMARYKEY2 as ID,

VALUE2 as Value2

sql select primarykey2,

value2

from table2;



Above 2 tables will be joined based on field ID as we renamed primary key from both tables as ID.

Hope that helps,

Dinesh.