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: 
Not applicable

Tables aggregation

Hi All,

We have 4 tables with a common field for all (CName) and some other fields with difrent name but with the same content(some of them)

Please help me to find out if CName is present or not in the other tables like bellow and how many.

Table 1Table 2Table 3Table 4
CNamenonono
yesnono
yesyesno
yesnoyes
Table 2Table 1Table 3Table 4
Cnamenoyesyes
nonono

Table1:
LOAD CName,
...
...
...

FROM ..."..." WHERE (...);
store Table1 into Table1.qvd (QVD);

Table2:
LOAD CName,
     ...............
     ...............
     ...............
    
FROM
["Path..."Table2.qvd]
(qvd);

Table3:
LOAD CName,
     ...............
     ...............
     ...............

FROM
["Path..."Table3.qvd]
(qvd);

Table4:
LOAD CName,
      ...............
      ...............
      ...............

FROM
["Path..."Table4.qvd]
(qvd);

0 Replies