Is there an easy way to join the following tables, tab1 and tab2. Where:
tab1 = Tabular[
{ {"001", 1, 2, 3}, {"002", 4, 5, 6}, {"003", 7, 6, 7}, {"004",
8, 9, 10}, {"005", 8, 9, 10} },
{"ID", "num 1", "num 2", "num 3"} ];
tab2 = Tabular[
{ {"001", 0.1, 0.3}, {"002", 0.99, 0.1}, {"003", 1.01,
1.67}, {"005", 0.4, 0.3} },
{"ID", "num 4", "num 5"} ]
tab2 has additional columns for the elements in tab1. Also, tab2 does not have exactly the same elements as tab1.
Attachments: