SQL server 游标用法
Posted 云里游的鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL server 游标用法相关的知识,希望对你有一定的参考价值。
declare @EmpCode varchar(50), @EmpName varchar(50), @EmpAddress varchar(200);
declare curEmployee cursor for
select empcode, empname, empaddress from tblCursor
open curEmployee
fetch curEmployee into @EmpCode, @EmpName, @EmpAddress
while @@FETCH_STATUS = 0
begin
select @EmpCode, @EmpName, @EmpAddress,@@FETCH_STATUS
fetch curEmployee into @EmpCode, @EmpName, @EmpAddress
end
-- 关闭游标
close curEmployee
-- 删除游标
deallocate curEmployee
以上是关于SQL server 游标用法的主要内容,如果未能解决你的问题,请参考以下文章