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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Implement sql in script editor

Hi ,

I have below SQL which I want to implement in Qlikview, I understand this can be done by script editor, please suggest options to do this

Select col1, col2

from table1, table2

where table1.col1=table2.col2

1 Solution

Accepted Solutions
Not applicable
Author

table1:

LOAD col1 AS KEY ;

SQL Select col1 FROM SOURCE


//table2

INEER JOIN(table1)

LOAD col2 AS KEY ;

SQL Select col2 FROM SOURCE

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See this video tutorial


talk is cheap, supply exceeds demand
Not applicable
Author

table1:

LOAD col1 AS KEY ;

SQL Select col1 FROM SOURCE


//table2

INEER JOIN(table1)

LOAD col2 AS KEY ;

SQL Select col2 FROM SOURCE