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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
wanyunyang
Creator III
Creator III

LOAD & SELECT

If in qlik sense data load editor, I do:

LOAD A+B AS X,Y;

table1:

SELECT A,B,Y FROM... WHERE...;

Then what would the fields in table1 be? A,B,Y or X,Y?

Thanks in advance!

1 Solution

Accepted Solutions
sasiparupudi1
Master III
Master III

Correct syntax should be

table1:

LOAD A+B AS X,Y;

SQL SELECT A,B,Y FROM... WHERE...;

Then the fields in table1 will be X,Y?

View solution in original post

2 Replies
sasiparupudi1
Master III
Master III

Correct syntax should be

table1:

LOAD A+B AS X,Y;

SQL SELECT A,B,Y FROM... WHERE...;

Then the fields in table1 will be X,Y?

Qrishna
Master
Master

Just X,Y