sql - How to get the stored procedure result set value -


I create a stored proc that calls another proc b, which gives the list of result sets.

How can I use these results in my Set A set value as I use this result to use one value one one next to the other part of the proc.

You can insert the result of the stored procedure in a (temporary) table by INSERT INTO . You can then use a select statement to process these results.

  Certain tableThatMatchesTheSproc excel your excel in Process; Choose from your table;    

Comments