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: 
Not applicable

Using CTE with Qlikview Load statement

Hey All,

I am new to Qlikview and trying to load a SQL CTE statement. I read a blog post and looks like you can do it, but I am having problems using it with Load.

This works with no error but putting a LOAD *; statement in front does not.



SQL with CTE

as

(

SELECT



*

FROM



Certification.dbo.Employee

)

select



* from

CTE

Labels (1)
1 Reply
Not applicable
Author

Hi,

I tired this and working for me.

Please use the below script.

Script:

load *;

sql with CTE

as

(

select * from Certification.dbo.Employee

)

select * from CTE;

Its working for we.

Please find the below.