can we have more than one RETURN statement in a function in PL/SQL ??
I know that we can have two RETURN statements in the following format:
if(condition) then
return .. ;
else
return.. ;
end...