Did you know that in addition to the function NVL, Oracle also has the function NVL2? which is quite different than its cousin NVL. So, what does NVL2 do?
Syntax:
NVL2 (expr1, expr2, expr3)
Purpose:
If expr1 is not null, NVL2 returns expr2. If expr1 is null, NVL2 returns expr3. The argument expr1 can have any datatype. The arguments expr2 and expr3 can have any datatypes except LONG.
If the datatypes of expr2 and expr3 are different, Oracle converts expr3 to the datatype of expr2 before comparing them unless expr3 is a null constant. In that case, a datatype conversion is not necessary.
The datatype of the return value is always the same as the datatype of expr2, unless expr2 is character data, in which case the return value’s datatype is VARCHAR2.
Example
The following example shows whether the income of each employee in department 30 is made up of salary plus commission, or just salary, depending on whether the comm column of emp is null or not.
SELECT ename,
NVL2(
TO_CHAR(COMM),
'SAL & COMM',
'SAL') income
FROM emp
WHERE deptno = 30;
ENAME INCOME
---------- ----------
ALLEN SAL & COMM
WARD SAL & COMM
MARTIN SAL & COMM
BLAKE SAL
TURNER SAL & COMM
JAMES SAL
Related articles:
- NVL, NVL2 or COALESCE?
- One more reason to upgrade your Oracle 8i
- Oracle PL/SQL package initialization
- Cool Undocumented SQL Function SYS_OP_MAP_NONNULL and Some Alternatives
- ANY, SOME and ALL in Oracle
Tagged function, null | Post a Comment


















Add New Comment
Viewing 3 Comments
Thanks. Your comment is awaiting approval by a moderator.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Add New Comment
Trackbacks
(Trackback URL)