Hi All,
I am new to KNIME and learning great. I have a use to merge multiple tables. Every table has different kind of data but BP ID is same in every table (but some table have more BP IDs and some are less). The below is sample…
Table A
BPID - Cost – Profit
0001 – 10 -4
0002 -11 - 3
Table B
BPID - Name – Address
0003 – John - Dallas
0002 –Mark - Huston
Table C
BPID – Zip code – State
0004- 74001 – TX
0002-75008 – TX
Output (after merging in Table A+B+C) would be like this…
BPID – Cost – Profit – Name – Address- Zip Code – State
0001 -10- 4 - NULL -- NULL – NULL – NULL
0002 – 11 – 3 - Mark - Huston ---75008 – TX
0003 – NULL – NULL – John – Dallas – NULL – NULL
0004 – NULL – NULL – NULL – NULL – 75008 – TX
Thanks for your help in this.