Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
Thanks&Regards
Ramesh
it will be concatenated in the previous table.
and you will see double values for each row...
As mentioned above it will concatenate into one table. You can avoid the concatenation by renaming the fields which will mean you end up with two tables.
You get single table if same fields and name is also same and if values are same then you see double values. But if you use NoConcatenate then table not concatenated but synthetic table created see more in the example.
LOAD * Inline
[
A,B,C
121,324,545
];
NoConcatenate
LOAD * Inline
[
A,B,C
34,35,78
121,324,545
];