Re: CASE/WHEN behavior with NULLS

From: Thalis Kalfigkopoulos <tkalfigo(at)gmail(dot)com>
To: David Johnston <polobo(at)yahoo(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: CASE/WHEN behavior with NULLS
Date: 2012-09-01 06:07:09
Message-ID: CAEkCx9HkVTOmJ+M9Grqt0KUXA3khoEUNLPPAKfyWo=p8CLF8Ug@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Sep 1, 2012 at 6:19 AM, David Johnston <polobo(at)yahoo(dot)com> wrote:
> On Aug 31, 2012, at 22:49, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>
>> David Johnston <polobo(at)yahoo(dot)com> writes:
>>> On Aug 31, 2012, at 21:52, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>>>> David Johnston <polobo(at)yahoo(dot)com> writes:
>>>>> That said you might want to try
>>>>> SUM(COALESCE(foo, 0))
>>
>>>> Actually I'd go with "COALESCE(SUM(foo), 0)" since that requires only
>>>> one COALESCE operation, not one per row.
>>
>>> These are not equivalent if some values of foo are not-null and you want the sum of all non-null values while replacing any nulls with zero. So the decision depends on what and why you are summing.
>>
>> But SUM() ignores input nulls, so I think they really are equivalent.
>> I agree that in a lot of other cases (for instance MAX), you'd have to
>> think harder about which behavior you wanted.
>>
>
> This I did not know/recall, was assuming nulls poisoned the result.
>
> David J.

Thanks all for the replies. Actually I had already tested that sum()
behaved correctly with respect to NULLs, meaning that it ignored them
(or treated them as 0, couldn't really tell). That's why I went ahead
sum()ing even though I knew NULLs would always be involved.
Unfortunately I didn't see what now seems obvious, that the comparison
would be =NULL and not IS NULL.

Works fine with coalesc(sum(foo),0).

regards,
Thalis K.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Dean Rasheed 2012-09-01 07:46:40 Re: [GENERAL] RE: [GENERAL] UPDATE RULE to be invoked when UPDATE .. WHERE fails the WHERE predicate ?‏
Previous Message Gurjeet Singh 2012-09-01 04:23:19 Getting random rows from a table