I have dataframe
df1 ->
ID Name
1 Test1
2 Test2
3 Test3
I have another dataframe df2
df2 ->
ID Name
1 Char
2 Float
3 Decimal
4 String
Now I want to update df1 name values based on names from df2 using ID
Now my df1 output should be
ID Name
1 Char
2 Float
3 Decimal
Please let me know how to acheive this.