I have three similar files, they are all like this:
File a
ID1 Value1a
ID2 Value2a
.
.
.
IDN Value2n
and I want this conclusion to look like
Output
ID1 Value1a Value1b Value1c
ID2 Value2a Value2b Value2c
.....
IDN ValueNa ValueNb ValueNc
Looking at the first line, I want the value 1A to be the value id1 in file A, value1B to the value id1 in file B, etc., in which each field and each line. I understand this as a sql connection. I tried several things, but not one of them, where even close.
EDIT: all files have the same length and identifiers.
source
share