what is the default value of a variable (VARCHAR2) at the time of declaration in PL SQL? Can i check it against NULL once after i declare a variable?
|
|
|||
|
|
|
And another small addition: if you're dealing with BLOBs (or CLOBS), "empty" is not the same as null. See the Oracle large objects manual if you need to. |
||
|
|
|
|
tuinstoel is correct. One addition: Don't be fooled into trying "ls_my_variable = NULL" as comparing with NULL always returns FALSE. Always use "ls_my_variable IS NULL" or "IS NOT NULL". |
||
|
|
|
|
Variables are default initialized with NULL. You can change that, for example:
You can also declare variables as not nullable:
|
||
|
|
|
|
Defaults are NULL, you can use IS NULL or IS NOT NULL. |
||
|
|
