Access to Result sets from within Stored procedures Transact-SQL SQL Server

前端 未结 7 1200
栀梦
栀梦 2020-11-27 17:59

I\'m using SQL Server 2005, and I would like to know how to access different result sets from within transact-sql. The following stored procedure returns two result sets, ho

7条回答
  •  猫巷女王i
    2020-11-27 18:24

    You could select them into temp tables or write table valued functions to return result sets. Are asking how to iterate through the result sets?

提交回复
热议问题