sql - TSQL: Call a stored procedure from another stored procedure and read the result -
I have a stored procedure that ends with a SELECT, a record set I give it in some way In the stored procedure, I can call:
EXEC process @ ultimate
How to obtain returning recordset? Thank you
You can create a temporary table and then INSERT #MyTable EXEC process @ You can use
.
There are some others.
Comments
Post a Comment