Hi rockydk,
First you need to retrieve record from TableA.
Select * from TableA where color='RED'
fill the result into a DataTable for example:
int size1ofA = Convert.ToInt32(dataTable.Rows[0]["Size1"]);
Then update TableB in another method.
Update TableB Set size1=size1+size1ofA where color='RED'
Sincerely,
Kira Qian
Please mark the replies as answers if they help and unmark if they don't.