I have two tables that contain the same unique key. I need to match those keys and then copy data from table 2 into table 1
Original:
Key COL1 COL2 Key COL3
1 01 NULL 1 05
2 02 NULL 2 12
3 03 NULL 3 27
Required:
Key COL1 COL2 Key COL3
1 01 05 1 05
2 02 12 2 12
3 03 27 3 27
Thank you for the help.