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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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
Employee
Employee

You can use Qualify * statement 

View solution in original post

2 Replies
jochem_zw
Employee
Employee

You can use Qualify * statement 

Robert78
Contributor III
Contributor III
Author

Thanks