Add new column from another file in existing file

I have two files which has one column comman in them.

The two files has exact same number of rows in the same sequence.

I want to add the second column of Users_detail_servicesonly.txt as last column in the existing file.

1) Users_detail_complete.txt

V0135        Memb Info                       mtruh
V0136        Memb Info                       mtruh
V0137        Memb Info                       mtruh
V0134        Memb Info                       mtruh
V0135        Memb Info                       mtruh
V0135        Memb Info                       mtruh
V0135        Memb Info                       mtruh
V0136        Memb Info                       mtruh
V0135        Memb Info                       mtruh

2) Users_detail_servicesonly.txt

V0135        Sanjeev 
V0136        Yadav   
V0137        Sanjeev 
V0134        Sanjeev 
V0135        Yadav   
V0135        Sanjeev 
V0135        Ashish  
V0136        Ashish  
V0135        Ashish  

I want the out put like :-

V0135        Memb Info                       mtruh            Sanjeev  
V0135        Memb Info                       mtruh            Yadav    
V0135        Memb Info                       mtruh            Sanjeev  
V0135        Memb Info                       mtruh            Sanjeev  
V0135        Memb Info                       mtruh            Yadav    
V0135        Memb Info                       mtruh            Sanjeev  
V0135        Memb Info                       mtruh            Ashish   
V0135        Memb Info                       mtruh            Ashish   
V0135        Memb Info                       mtruh            Ashish   

Any help would be appreciated...

What you have tried so far ..

didn't get an idea how to copy columns to a file..?

Use paste command to acheive .. Based on the input given, try the below ..

$ paste file1 file2 | awk '{$5=""; print}'

thats pretty logical...I didn't knw paste would make it so easy.....Thanks !!