I want to copy the information (quantity) of one dataframe's column to the other dataframe's quantity column but do so matching the SKU column.
So for example the dataframes look like:
Dataframe 1: 
SKU    Quantity      Title
A          3         Scissors
B          4         Cable
C          5         Goat
D          6         Cheese
Dataframe 2: 
SKU    Quantity      Title
A          1         Blue Scissors
B          2         Red Cables
C          1         Fat Goat
D          2         Smelly Cheese
So I would like to get Dataframe 1's quantities and place them into Dataframe 2, but matching the SKUs (A, B, C, D etc) even though some other columns (such as Title) might have different information.
 
     
    