Lu4
Lu4

Reputation: 15032

SQL stored procedure problems

I have a problem with the following stored procedure

CREATE PROCEDURE LockRoots
    -- Add the parameters for the stored procedure here
    @lock uniqueidentifier,
    @count int
AS
BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    UPDATE R
    SET R.[Lock] = @lock
    FROM 
    (
        SELECT TOP @count *
        FROM [Root] as R
        --LEFT JOIN [Container] as C ON R.ID = C.RootID
        WHERE [Lock] IS NULL
        --ORDER BY NEWID()
    );
END
GO

The problem occurs with "SELECT TOP @count *", why can't I "select top @VariableAmount" of records?

Upvotes: 3

Views: 172

Answers (1)

gbn
gbn

Reputation: 432561

Need parenthesis...

...
SELECT TOP (@count) *
...

Note: also SQL Server 2005+ for parameterised TOP

Upvotes: 6

Related Questions