Omdat in Oracle een varchar met een lengte van NUL wordt behandeld als NULL.
In jouw voorbeeld
NVL(NAME, ' ') AS NAME1 will evaluate to either NAME or ' ' - empty string.
NVL(NAME, '') as NAME2 will evaluate to either NAME or a zero length string
Omdat in Oracle een varchar met een lengte van NUL wordt behandeld als NULL.
In jouw voorbeeld
NVL(NAME, ' ') AS NAME1 will evaluate to either NAME or ' ' - empty string.
NVL(NAME, '') as NAME2 will evaluate to either NAME or a zero length string