Joining files using awk not extracting all columns from File 2


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Joining files using awk not extracting all columns from File 2
# 1  
Old 04-07-2016
Joining files using awk not extracting all columns from File 2

Hello All

I'm joining two files using Awk by Left outer join on the file 1

File 1

Code:
1 AA
2 BB
3 CC
4 DD

File 2

Code:
1 IND 100 200 300
2 AUS 400 500 600
5 USA 700 800 900

Below is the command used to do the left outer join:

Code:
awk 'NR==FNR{A[$1]=$2;next}{print$0 FS (A[$1]?A[$1]:"missing")}' file2 file1

Below is the output:
Code:
1 AA  IND
2 BB AUS
3 CC missing
4 DD missing

If you see, only first column from File 2 is being extracted and other columns are being ignored.

Any thoughts?

Thanks in advance.

Last edited by Scrutinizer; 04-08-2016 at 03:01 AM.. Reason: quote tags of input file -> code tags
# 2  
Old 04-07-2016
try:
Code:
awk 'NR==FNR{l=$1; $1=""; A[l]=$0;next}{print$0 (A[$1]?A[$1]:FS "missing")}' file2 file1

This User Gave Thanks to rdrtx1 For This Post:
# 3  
Old 04-08-2016
Quote:
Originally Posted by venkat_reddy
Hello All
I'm joining two files using Awk by Left outer join on the file 1

File 1
Code:
1 AA
2 BB
3 CC
4 DD

File 2

Code:
1 IND 100 200 300
2 AUS 400 500 600
5 USA 700 800 900

Below is the command used to do the left outer join:

Code:
awk 'NR==FNR{A[$1]=$2;next}{print$0 FS (A[$1]?A[$1]:"missing")}' file2 file1

Below is the output:
Code:
1 AA  IND
2 BB AUS
3 CC missing
4 DD missing

If you see, only first column from File 2 is being extracted and other columns are being ignored.
Any thoughts?
Thanks in advance.
Hello venkat_reddy,

Please use code tags as per forum rules, following may help you too in same.
Code:
awk 'FNR==NR{A[$1]=$2;next} ($1 in A){print $0 OFS A[$1];next} !($1 in A){print $0 OFS "missing"}' file2 file1
 OR
awk 'FNR==NR{A[$1]=$2;next} {Q=($1 in A)?$0 OFS A[$1]:$0 OFS "missing";print Q;Q=""}' file2 file1

Output will be as follows in both of above codes.
Code:
1 AA IND
2 BB AUS
3 CC missing
4 DD missing

Thanks,
R. Singh
This User Gave Thanks to RavinderSingh13 For This Post:
# 4  
Old 04-08-2016
@rdrtx1:

Code suggested by you worked. Thanks a lot

@Ravinder:

I did try out the code suggested by you but its giving me same output which I was getting earlier. I need all the columns from the File 2 .Anyways thanks much for the response
# 5  
Old 04-08-2016
Please show us the output you are trying to produce from your two sample input files (in CODE tags).
# 6  
Old 04-08-2016
Below is the output

Code:
-sh-4.1$ awk 'FNR==NR{A[$1]=$2;next} ($1 in A){print $0 OFS A[$1];next} !($1 in A){print $0 OFS "missing"}' b a
1 AA  IND
2 BB AUS
3 CC missing
4 DD missing

Code:
-sh-4.1$ awk 'FNR==NR{A[$1]=$2;next} {Q=($1 in A)?$0 OFS A[$1]:$0 OFS "missing";print Q;Q=""}' b a
1 AA  IND
2 BB AUS
3 CC missing
4 DD missing

Below are the files:

Code:
-sh-4.1$ more a
1 AA
2 BB
3 CC
4 DD

Code:
-sh-4.1$ more b
1 IND 100 200 300
2 AUS 400 500 600
5 USA 700 800 900

# 7  
Old 04-08-2016
Hello venkat_reddy,

I see my code has solved your requirement, could you please explain little further like how and where you are seeing issues? It will be good for us to help you please.


Thanks,
R. Singh
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Joining Two Files Matching Two Columns

Hi All, I am looking to join two files where column 1 of file A matches with column 1 of file B and column 5 of files A matches with column 2 of file B. After joining the files based on above condition, out should contain entire line of file A and column 3, 4 and 5 of file B. Here is sample... (8 Replies)
Discussion started by: angshuman
8 Replies

2. UNIX for Dummies Questions & Answers

Joining different columns from multiple files

Hello again, I am trying to join 3rd column of 3 files into the end on one file and save it separately... my data looks like this file 1 Bob, Green, 80 Mark, Brown, 70 Tina, Smith, 60 file 2 Bob, Green, 70 Mark, Brown, 60 Tina, Smith, 50 file 3 Bob, Green, 50 Mark, Brown,60 Tina,... (6 Replies)
Discussion started by: A-V
6 Replies

3. Shell Programming and Scripting

Other alternative for joining together columns from multiple files

Hi again, I have monthly one-column files of roughly around 10 years. Is there a more efficient way to concatenate these files column-wise other than using paste command? For instance: file1.txt 12 13 15 12 file2.txt 14 15 18 19 file3.txt 20 21 (8 Replies)
Discussion started by: ida1215
8 Replies

4. Shell Programming and Scripting

NR==FNR trick for joining columns from two files

foo.txt 1 rs2887286 0 1145994 C T 1 rs1240743 0 1323299 C A 1 rs1695824 0 1355433 G T 1 rs3766180 0 1468016 G A 1 rs7519837 0 1500664 A G 1 rs2272908 0 ... (12 Replies)
Discussion started by: genehunter
12 Replies

5. Shell Programming and Scripting

Extracting columns from multiple files with awk

hi everyone! I'd like to extract a single column from 5 different files and put them together in an output file. I saw a similar question for 2 input files, and the line of code workd very well, the code is: awk 'NR==FNR{a=$2; next} {print a, $2}' file1 file2 I added the file3, file4 and... (10 Replies)
Discussion started by: orcaja
10 Replies

6. UNIX for Dummies Questions & Answers

Extracting columns from multiple files with awk

hi everyone! I already posted it in scripts, I'm sorry, it's doubled I'd like to extract a single column from 5 different files and put them together in an output file. I saw a similar question for 2 input files, and the line of code workd very well, the code is: awk 'NR==FNR{a=$2; next}... (1 Reply)
Discussion started by: orcaja
1 Replies

7. Shell Programming and Scripting

Transposing column to row, joining with another file, then sorting columns

Hello! I am very new to Linux and I do not know where to begin... I have a column with >64,000 elements (that are not in numberical order) like this: name 2 5 9 . . . 64,000 I would like to transpose this column into a row that will later become the header of a very large file... (2 Replies)
Discussion started by: doobedoo
2 Replies

8. Shell Programming and Scripting

extracting columns with awk

Friends, I have a file with fileds in the following order sda 4.80 114.12 128.69 978424 1103384 sdb 0.03 0.40 0.00 3431 0 sda 1.00 0.00 88.00 0 176 sdb ... (14 Replies)
Discussion started by: achak01
14 Replies

9. Shell Programming and Scripting

Joining two files based on columns/fields

I've got two files, File1 and File2 File 1 has got combination of col1, col2 and col3 which comes on file2 as well, file2 does not get col4. Now based on col1, col2 and col3, I would like to get col4 from file1 and all the columns from file2 in a new file Any ideas? File1 ------ Col1 col2... (11 Replies)
Discussion started by: rudoraj
11 Replies

10. Shell Programming and Scripting

Joining columns from two files, if the key matches

I am trying to join/paste columns from two files for the rows with matching first field. Any help will be appreciated. Files can not be sorted and may not have all rows in both files. Thanks. File1 aaa 111 bbb 222 ccc 333 File2 aaa sss mmmm ccc kkkk llll ddd xxx yyy Want to... (1 Reply)
Discussion started by: sk_sd
1 Replies
Login or Register to Ask a Question