The following code example shows how you could convert 0 (zero) to null:
begin returns int;
if (C1 eq 0)
return NULL;
else
return C1;
end;
The following code example shows how you could convert 0 (zero) to null:
begin returns int;
if (C1 eq 0)
return NULL;
else
return C1;
end;