Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Recursive Function
Hi Sridharan if you accept a suggestion, as I understand it is so
CREATE OR REPLACE FUNCTION Recursive_function (p_parent IN NUMBER)
RETURN NUMBER
IS
v_parent NUMBER (5);
v_val NUMBER(5);
BEGIN
while true loop
SELECT PARENT_ID=20
INTO v_parent FROM DSCR_CONTENT
IF v_parent IS NULL THEN
exit;
ELSE
p_parent :=3D Recursive_function (p_parent);
END IF;
end loop;
RETURN (p_parent);
END Recursive_function;
Juan Carlos Reyes Pacheco
OCP
Database 9.2 Standard Edition
![]() |
![]() |