Is it possible to store the results of a select query in a stored proc and then use those results from within the stored proc to further query the result set?
Example // my stored proc (simplified example)
ALTER PROCEDURE [dbo].[users]
AS
BEGIN
Declare @users nvarchar(1000)
set @users = select * from users
// query @users result for counts, sums where clauses, etc...
END