Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 6 down vote accepted

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.

SELECT Tot = ISNULL(Val1, 0) + ISNULL(Val2, 0)
FROM Table
share|improve this answer

Use select Tot = isnull(Val1, 0) + isnull(Val2, 0) from Table

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.