I would like to merge two tables like this
Table_1
Chr1 5
Chr1 10
Chr1 20
Chr2 10
Chr2 30
Table_2
Chr1 10 value value2
Chr1 20 value value2
Chr2 30 value value2
Desired output
Chr1 5
Chr1 10 value value2
Chr1 20 value value2
Chr2 10
Chr2 30 value value2
I have found scripts in awk to merge tables conserving only rows that match by two columns in the two tables. But here, I would like all the rows of Table_1 but add the values for Table_2 if they match. Could you please tell me how to achieve this?