From: | Sean Chittenden <sean(at)chittenden(dot)org> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: "IS NOT NULL" != "NOT NULL" |
Date: | 2002-01-19 22:15:06 |
Message-ID: | 20020119141506.D1298@ninja1.internal |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
> > test_pgsql=# SELECT COUNT(*) FROM test WHERE col2 NOTNULL;
> > count
> > -------
> > 3
> > (1 row)
>
> > test_pgsql=# SELECT COUNT(*) FROM test WHERE col2 != NULL;
> > count
> > -------
> > 0
> > (1 row)
>
> These are not the same thing. See any of the past discussions about
> why "null = null" and "null != null" and so forth do not do what a
> novice might expect.
http://www.postgresql.org/idocs/index.php?functions-comparison.html
The archives appear to be broken, but the above link seems to explain
things well enough. I still can't grok the rationale as to why NULL
is interpreted as unknown and not interpreted as empty. I understand
that you can't compare two values that are unknown until the unknowns
are known. However why null isn't interpreted as empty is something I
haven't grasped. '' is different than empty ('' is a defined string
that's 0 characters in length), which is different than null
(unknown). In my mind: "col2 != NULL" is the same as "col2 IS NOT
NULL", but I fully understand why "col2 = NULL" is an invalid
statement. Not a biggie, just a source of curiosity. -sc
--
Sean Chittenden
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-01-19 22:54:05 | Re: "IS NOT NULL" != "NOT NULL" |
Previous Message | Tim Barnard | 2002-01-19 22:10:09 | Clarification question |