Re: Nulls get converted to 0 problem

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: Vincent Hikida <vhikida(at)inreach(dot)com>
Cc: Avi Schwartz <avi(at)CFFtechnologies(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Nulls get converted to 0 problem
Date: 2003-06-04 20:28:14
Message-ID: Pine.LNX.4.33.0306041425570.16396-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, 4 Jun 2003, Vincent Hikida wrote:

> > FYI, "" does NOT equal NULL does not equal 0.
>
>
> Interesting, I noticed that a few days ago. I noticed that in pg sql, if I
> used RTRIM on a column with all blanks. the RTRIM'ed result is not null. In
> Oracle I think it would be a null. That is in Oracle "" and NULL are
> equivalent.

Yeah, this is an issue we run into a lot on the lists. Basically, Oracle
got this one wrong, people wrote a lot of code expecting it, and now
Oracle can't change it to the proper behaviour without breaking folks'
applications.

There is a setting in postgresql that turns where field=NULL into where
field IS NULL, but I don't think there's much more support for "" being
equivalent to NULL.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message scott.marlowe 2003-06-04 20:29:57 Re: regular expression question
Previous Message Bruno Wolff III 2003-06-04 20:00:31 Re: regular expression question