CREATE PROCEDURE [test].[proc]
@ConfiguredContentId int,
@NumberOfGames int
AS
BEGIN
 SET NOCOUNT ON
 RETURN 
 @WunNumbers TABLE (WinNumb int)

    INSERT INTO @WunNumbers (WinNumb)
 SELECT TOP (@NumberOfGames) WinningNumber
 FROM [Game].[Game] g
 JOIN [Game].[RouletteResult] AS rr ON g.[Id] = rr.[gameId]
 WHERE g.[ConfiguredContentId] = @ConfiguredContentId
 ORDER BY g.[Stoptime] DESC

 SELECT WinNumb, COUNT (WinNumb) AS "Count"
 FROM @WunNumbers wn
 GROUP BY wn.[WinNumb]
END
GO

This stored procedure returns values from first select statement, but I would like to have values from second select statement to be returned. Table @WunNumbers is a temporary table.

Any ideas???

link|improve this question

67% accept rate
please reformat your sql code. – Anwar Chandra Sep 18 '09 at 10:22
That code is not valid SQL. It might be, if "RETURN @WinNumbers" was "DECLARE @WinNumbers", but then the rest of it looks right to return the final result set – Damien_The_Unbeliever Sep 18 '09 at 10:35
i see now, i posted wrong code. There is "DECLARE @WinNumbers" but it still does not work. – dani Sep 18 '09 at 10:46
feedback

3 Answers

up vote 1 down vote accepted

What version of SQL Server are you using? In SQL Server 2008 you can use Table Parameters and Table Types.

An alternative approach is to return a table variable from a user defined function but I am not a big fan of this method.

You can find an example here

link|improve this answer
I'm using sql server 2005 – dani Sep 18 '09 at 10:43
feedback

Take a look at this code,

CREATE PROCEDURE Test

AS
    DECLARE @tab table (no int, name varchar(30))

    insert @tab  select eno,ename from emp  

    select * from @tab
RETURN
link|improve this answer
How would this return/output a table variable to the caller? It currently returns a result set. – John Sansom Sep 18 '09 at 10:53
2  
It returns the result of the select statement (actual question) which in this case, happens to be the contents of the local table variable @tab. – Jeff O Sep 18 '09 at 13:56
feedback

The return type of a procedure is int.

You can also return result sets (as your code currently does) (okay, you can also send messages, which are strings)

Those are the only "returns" you can make. Whilst you can add table-valued parameters to a procedure (see BOL), they're input only.

Edit:

(Or as another poster mentioned, you could also use a Table Valued Function, rather than a procedure)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.