只需一步,快速开始
0
7251
管理员
您需要 登录 才可以下载或查看,没有账号?注册
declare @str varchar(20) --声明变量
declare Response cursor for select strfrom 表--声明游标open Response --打开游标
fetch next from Response into @str --将第一行游标内容存储在变量while @@fetch_Status=0 --游标循环开始 begin
-- 这里放游标内容 fetch next from Response into @str --将游标移动到下一行end --游标循环结束
close Response-- 关闭游标deallocate Response -- 释放游标
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
|Archiver|小黑屋|DBA论坛中国 ( 鲁ICP备20017503号-2 )
GMT+8, 2024-11-21 23:53 , Processed in 0.167700 second(s), 11 queries , MemCached On.
Powered by Discuz! X3.5
© 2001-2024 Discuz! Team.