Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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
Champion III
Champion III

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
Champion III
Champion III

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 .......