in reply to use of uninitialized values
The "NVL( column, value )" expression in SQL (in oracle, at least) will yield "value" in the case where "column" is null.select NVL(some_column,0) from some_table where some_condition...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: use of uninitialized values
by pfaut (Priest) on Apr 07, 2003 at 03:39 UTC |