Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: NULL value EQUALS to EMPTY string?!
Furthermore,
Nothing is equal to NULL ( That is, no thing, not the quantity nothing) not even
NULL
the only operators for use with NULL are IS and NOT IS
select x from y where z is null; or
select x from y where z is not null;
select x from y where z <> ' ';
select x from y where z = ' ';
select x from y where z > ' ';
..etc.
all work on blank strings, but not for empty (NULL) strings...
Just more to think about,
John G
"Michel Cadot" <micadot_at_netcourrier.com> wrote:
>Your statements show it to you:
>empty string is NOT equal to null,
>empty string IS null.
-----------== Posted via Newsfeeds.Com, Uncensored Usenet News ==---------- http://www.newsfeeds.com The Largest Usenet Servers in the World! ------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers ==----- Received on Mon Feb 07 2000 - 12:31:57 CST
![]() |
![]() |