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
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?