INSERT INTO Table1 (Amount, ContactName, State, City)
values
(
(Select Amount from Table2 where id=12)+
(Select Amount from Table3 where id=13),
'Sam',Newyork,'Newyork'
);
I was trying to Store the value of amount in Table1 by the sum of Table2 + Table3 Amount