存储过程游标应用
Posted 墨笔淡红尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程游标应用相关的知识,希望对你有一定的参考价值。
CREATE PROCEDURE userinfor2
@id int,
@UserID int output
AS
BEGIN
declare youbiao(游标名) cursor for select id from UserInfor where [email protected]
declare @getid varchar(400)
open youbiao(游标名)
begin
fetch next from youbiao(游标名) into @getid (赋值)
update UserInfor set name=‘‘[email protected]+‘‘+‘111‘ where [email protected]
end
close youbiao
deallocate youbiao
return @UserID
END
以上是关于存储过程游标应用的主要内容,如果未能解决你的问题,请参考以下文章