vote up 0 vote down star

can nvl() function be cascaded,...it was asked me in IBM interview .....and why????

flag

52% accept rate
Are we talking about Oracle's NVL function? And what do they mean when they say "cascaded"? – Adam Paynter Jul 10 at 11:26
yes oracle nvl and cascade means nvl within nvl – hrishi Jul 10 at 11:35

This question has an open bounty worth 100 reputation ending in 2 days.

5 Answers

vote up 1 vote down

The most common reason that I have seen for cascaded NVL's is that databases change over time. The original design had a table that later was changed to have more columns in the table. Alter statements created the new columns as NULL allowed and this was taken advantage of with view so that the code on top did not need to change. The problem was that a single column, change_date, was replaced with multiple columns. Update_Date, Comment_Date, and Approval_date. Each of the 3 new columns is now combined to get a "change_date" in the view with

create or replace view OldTableNmae as
select other_columns
    , nvl ( update_date, nvl ( comment_date, approval_date ) ) change_date
    , more_columns
from  new_table
/
link|flag
vote up 2 vote down

My answer:

Yes, NVL can be cascaded. It's something I'd expect to see on code ported from Oracle versions up to and including 8i, because COALESCE wasn't supported until Oracle 9i.

COALESCE is an ANSI SQL 99 standard, and works like a CASE/SWITCH statement in how it evaluates each expression in order and does not continue evaluating expressions once it hits a non-null expression. This is called short-circuiting. Another benefit of using COALESCE is that the data types do not need to match, which is required when using NVL.

This:

SELECT COALESCE( 1.5 / NULL, 
                 SUM(NULL), 
                 TO_CHAR(SYSDATE, 'YYYY') ) abc
  FROM DUAL

...will return: 2009 (for the next ~32 days, anyways)

link|flag
vote up 9 vote down

Better yet, use COALESCE

link|flag
I agree, Coalesce is an elegant solution to many situations where multiple NVL would be used – ChrisCM Jul 10 at 12:49
1  
I think that the interviewee was looking for the answer, "Yeah...but I'd just use COALESCE instead..." – Eric Jul 10 at 12:52
I seem to remember being told that the second argument to NVL is always evaluated regardless of whether it is used or not, which is not the case with COALESCE. This can make COALESCE the better performing option in some cases. – David Aldridge Jul 11 at 22:19
vote up 0 vote down

i tnk nvl(nvl(sal,'no sal'),'no sal') is wong and has no meaning, but nvl(to_char(managerid),'no manager') is possibe as any single row fun can be nested

link|flag
Obviously there's not much use sending a literal value as the first parameter to NVL - it's only useful when it's a variable, where you don't know if it's NULL or not :) – Jeffrey Kemp Jul 11 at 14:33
vote up 3 vote down

Why not? For example:

select NVL( null, NVL( null, 1 )) from dual

It can be something like:

select NVL( delete_date, NVL( edit_date, create_date ))  AS last_change
from Table

May be they wanted you to say that it is deterministic function. So it is reentrant.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.