MSSQL 游标格式
游标格式:
Declare 游标名 cursor for Select 字段1,字段2,...,字段n from 表名
open 游标名
fetch next from 游标名 into @变量1,@变量2,...,@变量n
while @@FETCH_STATUS=0
begin
...
你的处理语句
...
fetch next from 游标名 into @变量1,@变量2,...,@变量n
end
close 游标名
deallocate 游标名