Retrieve data from stored procedure which has multiple result sets

后端 未结 9 560
一个人的身影
一个人的身影 2020-11-30 08:47

Given a stored procedure in SQL Server which has multiple select statements, is there a way to work with those results separately while calling the procedure?

9条回答
  •  悲哀的现实
    2020-11-30 09:03

    You can put multiple result set in form of xml to a table

    So that when you want to access all these result you parse those result set column to a tabular form

提交回复
热议问题