Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can you be more specific and provide an example?
Below 2 basic points should get you started:
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.