vote up 3 vote down star

I have a a table with a column groups INTEGER NULL. It has values

groups

5
7
<NULL>

If I do a select sum(groups) form table_name
I would get 12. How can I get null, when the column being summed has a null.

flag

2 Answers

vote up 3 vote down check

One option:

CASE WHEN COUNT(*) = COUNT(groups) THEN SUM(groups) ELSE NULL END
link|flag
Looks good: count(*) gives the total number of rows, count(groups) gives the number of non-null groups. If these are different then you must have a null or two. – pjp Aug 17 at 16:25
Thank you. Simple and works. – uswaretech Aug 17 at 18:22
vote up 1 vote down
select
  case when exists (select groups from table where groups = null) then null
       else select sum(groups) from table
  end as sum
link|flag
+1 My thoughts exactly, beat me to it :) – Rax Olgud Aug 17 at 16:33
You can still come up with a nice stored procedure using cursors :) – Zed Aug 17 at 16:36

Your Answer

Get an OpenID
or

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