Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hey all,
hope you can help in this kind of exercice:
here is my case >>
table 1:
ID. Info
1. X
2. Y
3. Z
4. R
5. N
table 2:
ID. Info
1. X
3. Y
the output table needed is
output:
ID. Info
2. Y
4. R
5. N
thanks
Hi Try this.
Load * from table 2;
Load * from Table 1 where not exists(ID).
Regards,
Kaushik Solanki
Hi,
Try this ways
Ex:-
table2:
LOAD * Inline
[
ID. , Info
1. , X
3. , Y
];
NoConcatenate
Tmp:
LOAD ID. as ID. Resident table2;
DROP Table table2;
table1:
Load ID. as ID, Info;
Load * Inline
[
ID., Info
1. , X
2. , Y
3. , Z
4. , R
5. , N
] Where not Exists(ID.);
Regards,
Anand
WRITE THE BELOW EXPRESSION IN CALCULATION DIMENSION
=if( wildmatch(ID,'2','2'),ID,
if( wildmatch(ID,'4','4'),ID,
if( wildmatch(ID,'5','5'),ID)))