存储过程游标应用

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

以上是关于存储过程游标应用的主要内容,如果未能解决你的问题,请参考以下文章

存储过程游标应用

从包含游标的存储过程返回值

MySQL 存储过程,获取使用游标查询的结果集

关于存储过程返回游标的处理

oracle存储过程返回游标,取值报错

Oracle存储过程游标for循环怎么写