I want to create a stored procedure with one argument which will return different sets of records depending on the argument. What is the way to do this? Can I call it from plain SQL?
|
Here is how to build a function that returns a result set that can be queried as if it were a table:
|
|||
|
|
I think you want to return a REFCURSOR:
Update: If you need to call this from SQL, use a table function like @Tony Andrews suggested. |
||||
|
|
|
Probably with the use of table functions. Have a look at this documentation Table Functions and Cursor Expressions |
|||
|
|
|
If you want to use it in plain SQL, I would let the store procedure fill a table or temp table with the resulting rows (or go for @Tony Andrews approach).
|
||||
|
|
You may use Oracle pipelined fuctions
Simple Example - Generating Some Random Data
Suppose we needed three rows for something. We can now do that in one of two ways:
COLUMN_VALUE
or
COLUMN_VALUE
|
||||
|
|