I have two columns Val1 and Val2 as int in SQL Server 2008 When I select Tot = Val1+Val2 from Table, I get null as Tot
How do I get total of two int columns selected?
Many thanks.
|
I have two columns Val1 and Val2 as int in SQL Server 2008 When I select Tot = Val1+Val2 from Table, I get null as Tot How do I get total of two int columns selected? Many thanks. |
||||
|
|
|
It's likely that you have a null value in one of the columns. that will produce a null-valued result. You can do the following, if you want null to represent 0.
|
|||
|
|