today:
662
yesterday:
1,189
Total:
1,008,042

SQL NVL

admin 2016.05.19 15:08 Views : 152

NVL

Syntax

Description of nvl.gif follows
Description of the illustration nvl.gif

Purpose

NVL lets you replace null (returned as a blank) with a string in the results of a query. If expr1 is null, then NVL returns expr2. If expr1 is not null, then NVL returns expr1.

The arguments expr1 and expr2 can have any datatype. If their datatypes are different, then Oracle Database implicitly converts one to the other. If they are cannot be converted implicitly, the database returns an error. The implicit conversion is implemented as follows:

  • If expr1 is character data, then Oracle Database converts expr2 to the datatype of expr1 before comparing them and returns VARCHAR2 in the character set of expr1.

  • If expr1 is numeric, then Oracle determines which argument has the highest numeric precedence, implicitly converts the other argument to that datatype, and returns that datatype.

    See Also:

    Table 2-10, "Implicit Type Conversion Matrix" for more information on implicit conversion and "Numeric Precedence" for information on numeric precedence

Examples

The following example returns a list of employee names and commissions, substituting "Not Applicable" if the employee receives no commission:

SELECT last_name, NVL(TO_CHAR(commission_pct), 'Not Applicable')
   "COMMISSION" FROM employees
   WHERE last_name LIKE 'B%'
   ORDER BY last_name;
 
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
No. Subject Author Date Views
66 UPDATE PROCESS admin 2016.04.28 167
65 Delete Message - Are you sure you want to delete this object? admin 2016.04.28 166
64 JAVA for delete admin 2016.04.28 163
63 SQL SELECT DISTINCT Statement admin 2016.04.29 161
62 INSERT PROCESS admin 2016.04.28 160
61 DELETE PROCESS admin 2016.04.28 158
60 SQL Developer Password change / EXPORT & IMPORT admin 2022.03.18 157
59 wwv_flow_files admin 2016.05.01 155
58 MAX admin 2016.04.28 155
57 PHONE NUMBER admin 2016.04.28 153
56 Forgot Oracle username and password, how to retrieve? admin 2022.03.18 152
» NVL admin 2016.05.19 152
54 Column Data 일괄 추가 admin 2023.11.24 151
53 CREATE (INSERT) PROCESS admin 2016.04.28 151
52 Field Showing admin 2016.04.01 149
51 Outer Join with Oracle SQL admin 2016.04.29 148
50 BOOLEAN SAMPLE admin 2016.05.11 147
49 COUNT admin 2016.04.28 147
48 Delimiter admin 2016.04.29 141
47 How to Update Oracle XE admin 2018.04.25 139