Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: where clause
You need to use NVL. For example, NVL(status_flag,'X') != 'A' where 'X' is any value other than 'A'. It does not recognise the null values.
Regards,
Shamita
David Boyd <davidb158_at_hotmail.com> wrote:
Hi List,
I found following results that I don't understand.
SQL> desc test
Name Null? Type
----------------------------------------- -------- -----------------
STATUS_FLAG CHAR(1)
SQL> SELECT COUNT(*) FROM test;
COUNT(*)
SQL> SELECT COUNT(*) FROM test WHERE status_flag IS NULL;
COUNT(*)
SQL> SELECT COUNT(*) FROM test WHERE status_flag ='A';
COUNT(*)
SQL> SELECT COUNT(*) FROM test WHERE status_flag ='S';
COUNT(*)
SQL> SELECT COUNT(*) FROM test WHERE status_flag !='A';
COUNT(*)
I thought the last query should return 1676 (status_flag ='S' + status_flag is null) instead of 38 (status_flag ='S' only). Any ideas???
Shamita
![]() |
![]() |