Depends on what you mean.
If you are inserting a new row into Account Table you could simply do
INSERT INTO [Account Table](AccountTotal)
SELECT Sum(BatchTranValue) FROM BatchTran WHERE BatchTranHeaderID=@BatchID
Otherwise you could do something like:
DECLARE @Total decimal
SET @total = (SELECT AccountTotal from [Account Table] where AccountNoID = <value>
INSERT INTO [Account Table](AccountTotal)
SELECT Sum(BatchTranValue + @total) FROM BatchTran WHERE BatchTranHeaderID=@BatchID
hth
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor :.
Wrox Books 24 x 7
================================================== =========