Re: Nulls get converted to 0 problem

From: Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
To: Avi Schwartz <avi(at)CFFtechnologies(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Nulls get converted to 0 problem
Date: 2003-06-05 05:34:26
Message-ID: 20030605053426.GG3268@dcc.uchile.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Jun 04, 2003 at 10:26:22AM -0500, Avi Schwartz wrote:

> select * from item_catalog where item_category is null
>
> With SQl Server 7, this works as expected, but with PostgreSQL, the
> value Coldfusion is setting the integer variables to is 0 (zero) and
> not "" as it should.

You probably can do

select coalesce(column1::text, ''), coalesce(column2::text, ''), ...
from item_catalog where item_category is null;

(Note that everything is going to come back as TEXT rather than numbers,
though)

--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"Las cosas son buenas o malas segun las hace nuestra opinion" (Lisias)

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Coby Beck 2003-06-05 05:35:05 implicit type conversions
Previous Message Alvaro Herrera 2003-06-05 05:26:32 Re: Anonymous CVS access