Edit D:\app\Administrator\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em\em\online_help\tdddg\tdddg_selecting018.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <script src="./callback.js" type="text/javascript"></script> <noscript>Your browser does not support JavaScript. This help page requires JavaScript to render correctly.</noscript> </head> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta name="generator" content="Oracle DARB XHTML Converter (Mode = ohj/ohw) - Version 5.1.1 Build 005" /> <meta name="date" content="2009-04-21T9:46:23Z" /> <meta name="robots" content="noarchive" /> <meta name="doctitle" content="Using NULL-Related Functions in Queries" /> <meta name="relnum" content="11g Release 2 (11.2)" /> <meta name="partnum" content="E10766-01" /> <link rel="copyright" href="./dcommon/html/cpyr.htm" title="Copyright" type="text/html" /> <link rel="stylesheet" href="./dcommon/css/blafdoc.css" title="Oracle BLAFDoc" type="text/css" /> <link rel="contents" href="toc.htm" title="Contents" type="text/html" /> <link rel="prev" href="tdddg_selecting017.htm" title="Previous" type="text/html" /> <link rel="next" href="tdddg_selecting019.htm" title="Next" type="text/html" /> <title>Using NULL-Related Functions in Queries</title> </head> <body> <div class="zz-skip-header"><a href="#BEGIN">Skip Headers</a></div> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr valign="bottom"> <td align="left"></td> <td align="center"><a href="tdddg_selecting017.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_selecting019.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> <p><a id="BCGEDIJE" name="BCGEDIJE"></a><a id="TDDDG22570" name="TDDDG22570"></a></p> <div class="sect2"><!-- infolevel="all" infotype="General" --> <h1>Using NULL-Related Functions in Queries</h1> <a name="BEGIN" id="BEGIN"></a> <p>The <code>NULL</code>-related functions facilitate the handling of <code>NULL</code> values. The <code>NULL</code>-related functions that SQL supports are listed and described in <a href="javascript:open('http://www.oracle.com/pls/db112/lookup?id=SQLRF30049','newWindow').focus()"><span class="italic">Oracle Database SQL Language Reference</span></a>.</p> <p>The query in the following example returns the last name and commission of the employees whose last names begin with <code>'B'</code>. If an employee receives no commission (that is, if <code>COMMISSION_PCT</code> is <code>NULL</code>), the <code>NVL</code> function substitutes "Not Applicable" for <code>NULL</code>.</p> <div class="example"><a id="CEGJAJCJ" name="CEGJAJCJ"></a><a id="TDDDG172" name="TDDDG172"></a> <p class="titleinexample">Substituting a String for a NULL Value</p> <pre xml:space="preserve" class="oac_no_warn"> SELECT LAST_NAME, <span class="bold">NVL(TO_CHAR(COMMISSION_PCT), 'Not Applicable')</span> "COMMISSION" FROM EMPLOYEES WHERE LAST_NAME LIKE 'B%' ORDER BY LAST_NAME; </pre> <p>Result:</p> <pre xml:space="preserve" class="oac_no_warn"> LAST_NAME COMMISSION ------------------------- ---------------------------------------- Baer Not Applicable Baida Not Applicable Banda .1 Bates .15 Bell Not Applicable Bernstein .25 Bissot Not Applicable Bloom .2 Bull Not Applicable 9 rows selected. </pre></div> <!-- class="example" --> <p>The query in the following example returns the last name, salary, and income of the employees whose last names begin with <code>'B'</code>, using the <code>NVL2</code> function: If <code>COMMISSION_PCT</code> is not <code>NULL</code>, the income is the salary plus the commission; if <code>COMMISSION_PCT</code> is <code>NULL</code>, income is only the salary.</p> <div class="example"><a id="CEGHFACH" name="CEGHFACH"></a><a id="TDDDG173" name="TDDDG173"></a> <p class="titleinexample">Specifying Different Expressions for NULL and Not NULL Values</p> <pre xml:space="preserve" class="oac_no_warn"> SELECT LAST_NAME, SALARY, <span class="bold">NVL2(COMMISSION_PCT, SALARY + (SALARY * COMMISSION_PCT), SALARY) INCOME</span> FROM EMPLOYEES WHERE LAST_NAME LIKE 'B%' ORDER BY LAST_NAME; </pre> <p>Result:</p> <pre xml:space="preserve" class="oac_no_warn"> LAST_NAME SALARY INCOME ------------------------- ---------- ---------- Baer 10000 10000 Baida 2900 2900 Banda 6200 6882 Bates 7300 8468 Bell 4000 4000 Bernstein 9500 11970 Bissot 3300 3300 Bloom 10000 12100 Bull 4100 4100 9 rows selected. </pre></div> <!-- class="example" --> <div class="helpinfonotealso"> <h2>Related Topics</h2> <p><a href="javascript:open('http://www.oracle.com/pls/db112/lookup?id=SQLRF00684','newWindow').focus()"><span class="italic">Oracle Database SQL Language Reference</span></a> for more information about the <code>NVL</code> function</p> <p><a href="javascript:open('http://www.oracle.com/pls/db112/lookup?id=SQLRF00685','newWindow').focus()"><span class="italic">Oracle Database SQL Language Reference</span></a> for more information about the <code>NVL2</code> function</p> <p><a href="tdddg_selecting010.htm#BCGCCGJF">Using Operators and Functions in Queries</a></p> </div> </div> <!-- class="sect2" --> <!-- Start Footer --> <div class="footer"> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr> <td align="left"><span class="copyrightlogo">Copyright © 1996, 2009, Oracle and/or its affiliates. All rights reserved.</span><br /> <a href="./dcommon/html/cpyr.htm"><span class="copyrightlogo">Legal Notices</span></a></td> <td align="center"><a href="tdddg_selecting017.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_selecting019.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> </div> <!-- class="footer" --> </body> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de