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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Fiorrie
Creator
Creator

Combine Load & SQL Query

Hi Everyone

I am trying to connect Load and SQL Statement after I drop the table (so not using concatenate as I am not using star scheme in this case). I want to connect additional dimension to existing model through ID. Can you advise please?

Many thanks

question.jpg

 

2 Solutions

Accepted Solutions
rubenmarin
MVP
MVP

Hi, sometimes you can load directly from SQL but I always set a LOAD before, so maybe to do a join you must use a load?:

Left Join
LOAD *;
SQL SELECT...

 

View solution in original post

Kushal_Chawda
MVP
MVP

@Fiorrie  or you can also do

Sql_query:

SQL SELCT *...   ;

right join

LOAD *

FROM Level_Table;

View solution in original post

2 Replies
rubenmarin
MVP
MVP

Hi, sometimes you can load directly from SQL but I always set a LOAD before, so maybe to do a join you must use a load?:

Left Join
LOAD *;
SQL SELECT...

 

Kushal_Chawda
MVP
MVP

@Fiorrie  or you can also do

Sql_query:

SQL SELCT *...   ;

right join

LOAD *

FROM Level_Table;