Michael Bellefroid writes "(SQLServer 2000 SP1/Windows 2000 SP2)Let's take a stored procedure returning the first employee.CREATE PROCEDURE [dbo].[GetFirstEmployee] AS SELECT TOP 1 employee_name FROM employees ORDER BY employee_nameRETURN (0)GO
How to access the returned result set from another stored procedure that calls the GetFirstEmployee ?CREATE PROCEDURE [dbo].[Test] AS EXECUTE [dbo].[GetFirstEmployee] -- How to access the first employee name here ?GO
"