SQL Server 2008请求关于创建游标以循环遍历记录的示例

use*_*384 17 sql-server-2008

有没有经验创建游标循环一堆记录?如果你这样做,你能为我提供一个基本的例子.谢谢

Gri*_*aub 27

declare cur cursor for 
select id from tbl 
open cur
declare @id int
fetch next from cur into @id
while (@@FETCH_STATUS = 0)
begin
    print(@id)
    fetch next from cur into @id
end
close cur
deallocate cur

-- just replace "tbl" with your table name and "id" with your field name
-- and do whatever you want in begin-end block (now it simply prints the id of each record)
Run Code Online (Sandbox Code Playgroud)