Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Either it's equal or it isn't, right?

Re: Either it's equal or it isn't, right?

From: rob <rob_at_dsdelft.nl>
Date: Wed, 6 May 1998 17:30:12 +0200
Message-ID: <6ipvru$nfq$1@news.worldonline.nl>

>SQL> select count(*) from phone;
>
> COUNT(*)
>----------
> 13042
>
>SQL> select count(*) from phone where record_status = 'A';
>
> COUNT(*)
>----------
> 12983
>
>
>>
> COUNT(*)
>----------
> 0
>

SQL> select count(*) from phone where record_status is null; My guess is

COUNT(*)



 59

NULL means 'not defined' or 'unknown' this means that any comparisson other than 'is null' will fail.

Rob Received on Wed May 06 1998 - 10:30:12 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US