Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> logic not nvl
Did any of you see this:
SQL> select 'TRUE' from dual where (1 = 1);
'TRU
no rows selected
SQL>
SQL> select 'NULL' from dual where (null = 1);
no rows selected
SQL> select 'TRUE' from dual where lnnvl(null = 1);
'TRU
SQL> SQL> SQL> select 'FALSE' from dual where (2=1);
no rows selected
SQL> select 'TRUE' from dual where lnnvl(2=1);
'TRU
Waleed
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Khedr, Waleed INET: Waleed.Khedr_at_FMR.COM Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Fri Jul 19 2002 - 13:03:34 CDT