Suppose i have a table having two columnsoutputcol1 col2 sum1 2 33 4 75 6 11
Regards, Jayakumar Selvakani
Mark as Answer if it helps you Thanks&Regards Aswini Aluri
col1 col2 sum 1 NULL 1 3 4 7 5 6 11
SELECT col1, col2, ISNULL(col1, 0)+ISNULL(col2, 0) Sum FROM TableName
Mark This Response as Answer -- Chandu http://www.dotnetfunda.com/images/dnfmvp.gif
Login to post response