Subject NULL VALUES
Author Gleison
I went a function like NVL(arg1,arg2) for Interbase

if arg1 is null
result= arg2
else
result= arg1
end if;

for any kind of datatype in arg1 and arg2

if you know Oracle, you know this function.

Anybody know a function like this function.