can nvl() function be cascaded,...it was asked me in IBM interview .....and why????
|
|
|||||
|
|||||
|
|||||
|
|
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
|
||
|
|
|
|
My answer:
This:
...will return: |
||
|
|
|
|
Better yet, use |
||||||||
|
|
|
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 |
||
|
|
|
Why not? For example:
It can be something like:
May be they wanted you to say that it is deterministic function. So it is reentrant. |
||
|
|
