-
-
Save anupamshakya7/89f0752e42a64bad4cb0 to your computer and use it in GitHub Desktop.
Merge two CSV with common field.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INPUT1 | |
====== | |
ID,name,add | |
1,anupam,FHG | |
2,aditya,DFR | |
3,urmila,HJTY | |
4,roop,GHG | |
5,EASH,HJJ | |
INPUT2 | |
====== | |
ID,Key,Value | |
1,x-jdkj,100 | |
2,k-djsh,200 | |
3,j-jdjd,300 | |
OUTPUT | |
====== | |
add,Key,ID,Value,name | |
FHG,x-jdkj,1,100,anupam | |
HJTY,j-jdjd,3,300,urmila | |
DFR,k-djsh,2,200,aditya | |
HJJ,,5,,EASH | |
GHG,,4,,roop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment