Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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

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