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?
|
|
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).
|
||
|
|
|
|
Here is how to build a function that returns a result set that can be queried as if it were a table:
|
||
|
|
|
Probably with the use of table functions. Have a look at this documentation Table Functions and Cursor Expressions |
||
|
|
|
|
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. |
|||
|
|
