Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
taz803
Contributor III
Contributor III

how to store data in a table

i have a request

test1 : select from many tables and with join and where and group by i want to store the result of this request in a another table . 

i tried :

test2:

load * from test1 and it doesn't work .

how can i handle it 

1 Reply
vikasmahajan

hi,

you need to use word resident:

test:

Load  * from xyz;

test2:

Load * from pqr ;

join (test2)

load * resident test ;

drop table test;

STORE test2 INTO 'lib://QVdata/test2.qvd' (qvd);

or 

STORE test2 INTO 'lib://QVdata/test2.qvd' (CSV);  in case you wanted to store into CSV format.

Vikas

 

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.