declare 游标名 CURSOR scroll for select...
open 游标名
fetch next from 游标名 into 变量名..
while @@fetch_status=0
begin
...
fetch next from 游标名 into 变量名..
end
close 游标名
deallocate 游标名
declare 游标名 CURSOR scroll for select...
open 游标名
fetch next from 游标名 into 变量名..
begin
...
fetch next from 游标名 into 变量名..
end
deallocate 游标名