Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 🙂
You can use Qualify * statement
You can use Qualify * statement
Thanks