Re: NULLs ;-) - Mailing list pgsql-general

From Ragnar
Subject Re: NULLs ;-)
Date
Msg-id 1164749939.27070.190.camel@localhost.localdomain
Whole thread Raw
In response to Re: NULLs ;-)  (Scott Ribe <scott_ribe@killerbytes.com>)
Responses Re: NULLs ;-)  (Scott Ribe <scott_ribe@killerbytes.com>)
List pgsql-general
On þri, 2006-11-28 at 12:28 -0700, Scott Ribe wrote:
> >>> where a <> b or (a is null and b is not null) or (a is not null and
> >>> b is null)
> >>
> >> In the absence of IS DISTINCT FROM, I think this has the same semantics:
> >>
> >>    where coalesce(a, b) <> coalesce(b, a)
> >
> > sorry, but no.
>
> So it would have to be where coalesce(a, b, 0) <> coalesce(b, a, 0) for your
> example with ints, and likewise some default value for other column types...

no cigar.

test=# select a,b,
   coalesce(a, b, 0) <> coalesce(b, a, 0) as john,
   a IS DISTINCT FROM b as dist
   from logic;
 a | b | john | dist
---+---+------+------
   |   | f    | f
   | 1 | f    | t
 1 |   | f    | t
 1 | 1 | f    | f
(4 rows)


gnari




pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: slow inet within cidr query
Next
From: novnov
Date:
Subject: Re: Editing contrib modules which are loaded by default?