Re: comparing nulls - Mailing list pgsql-sql

From Reinoud van Leeuwen
Subject Re: comparing nulls
Date
Msg-id 20040120153322.U66382@spoetnik.xs4all.nl
Whole thread Raw
In response to comparing nulls  (Kenneth Gonsalves <lawgon@thenilgiris.com>)
List pgsql-sql
On Tue, Jan 20, 2004 at 07:13:12PM +0530, Kenneth Gonsalves wrote:
> in postgres7.1 i had a table where an integer field could be null. There was 
> no default value. a select statement like so:
> 'select * from table where field = null' 
> would give all the rows where that field had no value.
> on porting to 7.3.2, this doesnt work. How to do this?

Because NULL can be read as "unknown". It does not make much sense to 
test wheter a value of an integer is numerically equal to unknown. That is 
why there is the IS operator:

where field IS null

-- 
__________________________________________________
"Nothing is as subjective as reality"
Reinoud van Leeuwen    reinoud.v@n.leeuwen.net
http://www.xs4all.nl/~reinoud
__________________________________________________


pgsql-sql by date:

Previous
From: Luis Sousa
Date:
Subject: Re: Database diagram
Next
From: Kenneth Gonsalves
Date:
Subject: Re: comparing nulls