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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

common fields

Hello,

I need to create a table  which contains the common fields of two other tables.

How can I do that?

3 Replies
sushil353
Master II
Master II

use:

Qualifier key word:

tab1:

load

from X

qualify *;

tab2

load

from y

HTH

Sushil

Not applicable
Author

Hi,

a really short question. Do you have an example explaining your intension?

Best Sacho

gaurav2017
Creator II
Creator II

Hi,

Hope this is what u desire:

Temp1:

Load a,

        b,

        c

from temp1.qvd;

Join (Temp2)

Load b,

        c,

        d

from temp2.qvd;

Temp:

load b, c resisdent Temp1;

Drop table Temp1;

I am just wildly guessing the solution as i can't understand your requirements.

regards,