-1

I have 2 dataframe with df1 and df2 , df1 contains column Country code and Country name , df2 contains column Name , dept , Country Code. I want to add Country name from df1 to df2 with respect to Country Code. Any solution for this?

1 Answers1

0

if they have organised records, this should work

df2.country = df1.country
Anmol Parida
  • 672
  • 5
  • 16