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: 
Qlikbuddy
Contributor III
Contributor III

convert the below Teradata script into Qlik script.

Convert the below tera data Query into the Qlik Script.
 
 
CREATE VOLATILE MULTISET TABLE funnel AS (
SELECT * FROM dev_bpl.funnel
QUALIFY ROW_NUMBER() OVER (PARTITION BY Event_Id ORDER BY TD_SYSFNLIB.NVL (order_id, 0)  DESC) = 1
) WITH DATA PRIMARY INDEX (Event_Id) ON COMMIT PRESERVE ROWS;
Labels (3)
2 Replies
Qlikbuddy
Contributor III
Contributor III
Author

Would be great, if some one convert it for me in entire Qlik script. some how i am not able to convert it.