I have an Oracle procedure that executes select statement and returns the result.
I need to use that result in another select statement. Is it possible to do this?
This does not work:
SELECT * FROM myprocedure(parameter);
I have an Oracle procedure that executes select statement and returns the result.
I need to use that result in another select statement. Is it possible to do this?
This does not work:
SELECT * FROM myprocedure(parameter);