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: 
vikasmahajan

inner joins using sql cursor

Dear  all

I have following master in  views sql

PRODUCT MASTER  VIEW

----------------------------

product code

product name

category

brand

specialilty

PRODUCT BATCH MASTER

----------------------------------------

product code

mfg date

exp date

batch no

I want to join this two masters while loading data in qlikview in my script can any

one tell me the way how we can load and combine this masters while loading time only.

Thanks & Regards

Vikas Mahajan

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
2 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

You can directly join the views and load the resultant table into qlikview.

TableName:

SQL SELECT

     *

FROM View1

INNER JOIN View2

ON View1.Key = View2.Key;

Hope this helps you.

Regards,

Jagan.

vikasmahajan
Author

Can give me syntax with data loading scripts

Thanks for help

Regards

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.