Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script Load SQL Joining

How can I join two Oracle tables on Script load

1 Solution

Accepted Solutions
its_anandrjs

Hi,

Write this way

Rep_Details:
LOAD
`Rep_Id`;
SQL SELECT *
FROM Data;

Join

Rep_Category:
LOAD `Rep_Id`,
`Rep_Name`,
`Category_Desc`;
SQL SELECT *
FROM `Rep_Category`;

Please open single thread for the same question

Script Load SQL Joining

Regards

Anand

View solution in original post

5 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Identical post to the one here: Script Load SQL Joining

Please do not post your questions twice in different forums. Thank you.

Not applicable
Author

Hi,

Load 2 tables from oracle and write join (it depends what kind of join u wanna write , u can use left join , Right join, inner join) .....

Ex:

emp:

sql

select * form table1;

left join(emp)

sql

select * from table 2 ;

its_anandrjs

Hi,

Write this way

Rep_Details:
LOAD
`Rep_Id`;
SQL SELECT *
FROM Data;

Join

Rep_Category:
LOAD `Rep_Id`,
`Rep_Name`,
`Category_Desc`;
SQL SELECT *
FROM `Rep_Category`;

Please open single thread for the same question

Script Load SQL Joining

Regards

Anand

Not applicable
Author

Thanks its working.

Regards,

Naveed

Not applicable
Author

Hi Naveed ,

Please close the thread .......