Re: numeric fields and null - Mailing list pgsql-sql

From Franco Bruno Borghesi
Subject Re: numeric fields and null
Date
Msg-id 200305221940.49755.franco@akyasociados.com.ar
Whole thread Raw
In response to numeric fields and null  (Don Park <donp+postgresql@klickitat.st>)
Responses Re: numeric fields and null  (Don Park <donp+postgresql@klickitat.st>)
List pgsql-sql
the correct way to do it is 
select id,postaladdressid from users where postaladdressid IS null;

I could tell you way, but this explanation (http://techdocs.postgresql.org/guides/BriefGuideToNulls)  is
so good that I'would waste your time :)

On Thursday 22 May 2003 17:17, Don Park wrote:
> Im trying to pull out all records in a table where field
> 'postaladdressid=null' but I cant figure this out.
>
> \d users
> ....
> id               | numeric
> postaladdressid  | numeric
> ....
>
> adhoc=# update users set postaladdressid=null where id=50;
> UPDATE 1
>
> adhoc=# select id,postaladdressid from users where postaladdressid=null;
>  id | postaladdressid
> ----+-----------------
> (0 rows)
>
> Why did it not select record 50?
>
> just for your info, this is what record 50 looks like.
> adhoc=# select id,postaladdressid from users where id=50;
>  id | postaladdressid
> ----+-----------------
>  50 |
> (1 row)
>
>
> Don



pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: numeric fields and null
Next
From: "Stefano Vita Finzi"
Date:
Subject: plpgsql recursion