Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Robert78
Contributor III
Contributor III

load two separate table with same structure

Hello,

I need to load two separate table with almost same structure without synthetic table and without merging them.

I wrote this :

SQL
SELECT *
FROM "_BRO_CA_ONLINE";
STORE "_BRO_CA_ONLINE" into C:\QLICK\XX_BRO_CA_ONLINE.qvd(qvd);

SQL
SELECT *
FROM "_BRO_CA_ONLINE_facturi";
STORE "_BRO_CA_ONLINE" into C:\QLICK\XX_BRO_CA_ONLINE_facturi.qvd(qvd);

pls advice, thanks 🙂

Labels (2)
1 Solution

Accepted Solutions
jochem_zw
Partner Ambassador
Partner Ambassador

You can use Qualify * statement 

View solution in original post

2 Replies
jochem_zw
Partner Ambassador
Partner Ambassador

You can use Qualify * statement 

Robert78
Contributor III
Contributor III
Author

Thanks