Search code examples
sqlcursor

Sql Server Cursor error on 'for'


here's the sql code I have for a cursor I need:

declare @myCursor cursor for
    SELECT item_one, item_2, lastUpdateTime, content_value FROM #MyTable;

I'm getting the error:

Msg 156, Level 15, State 1, Line 44 Incorrect syntax near the keyword 'for'.

What am I doing wrong?

I'm using SQL Server 2008 R2.


Solution

  • Cursors do not use a @ prefix like other variables:

    declare myCursor cursor for
        SELECT item_one, item_2, lastUpdateTime, content_value FROM #MyTable;