Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how can I create a table with the values from other two, but only with the value that not match?
EX:
TABLE A:
A
B
C
TABLE B:
D
E
TABLE RESULT:
Ethanks
Try:
TableA:
load *,1 as A inline [
FieldName
];
join
load *, 1 As B inline [
Result:
Load FieldName
Resident TableA
where A <> B;
//optional: drop table TableA;
If you mean to that you want to create this as a straight table in the UI then look at this discussion.