17

有没有人有创建游标以遍历一堆记录的经验?如果你这样做,你能给我一个基本的例子。谢谢

4

1 回答 1

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)
于 2012-08-08T03:11:54.187 回答