I have the following table
CREATE TABLE regions
(
PARENT_NAME VARCHAR2(30),
CHILD_NAME VARCHAR2(30)
);
I need to perform recursion using cursors in Pl/SQL like that accepts a region name (CHILD_NAME) from the user input and display all its parent regions. Any suggestions?.