Hi All,
I am stuck with one tricky situation here.
The situation is as follows:-
I have two files, both files have two columns - space seperated key value pairs.
Now say files are f1 and f2.
and columns in f1 are f1c1, f1c2; and columns in f2 are f2c1 and f2c2.
f2c1 is a subset of f1c1 (say keys).
f1c2 and f2c2 are different (say values).
Now I want to merge f1 and f2 into a file f3, so that f3 has three columns (space seperated):-
f1c1, f1c2, f2c2. (in DB terms I want to perform a left outer join).
I have no clue how to perform that. Can anybody assist me in this.
Thanks in advance for your valuable inputs.
Best Regards,
Sumit
I am stuck with one tricky situation here.
The situation is as follows:-
I have two files, both files have two columns - space seperated key value pairs.
Now say files are f1 and f2.
and columns in f1 are f1c1, f1c2; and columns in f2 are f2c1 and f2c2.
f2c1 is a subset of f1c1 (say keys).
f1c2 and f2c2 are different (say values).
Now I want to merge f1 and f2 into a file f3, so that f3 has three columns (space seperated):-
f1c1, f1c2, f2c2. (in DB terms I want to perform a left outer join).
I have no clue how to perform that. Can anybody assist me in this.
Thanks in advance for your valuable inputs.
Best Regards,
Sumit
Comment