欢迎光临
我们一直在努力

SQL Server 2000游标使用方法-数据库专栏,SQL Server

建站超值云服务器,限时71元/月

游标使用方法:
use db1
declare my_cursor cursor scroll dynamic /*scroll表示可随意移动游标指针(否则只能向前),dynamic表示可以读写游标(否则游标只读)*/
for
select 姓名 from 个人资料

open my_cursor
declare @name sysname
fetch next from my_cursor into @name
while(@@fetch_status=0)
  begin
    print 姓名: + @name
    fetch next from my_cursor into @name
  end
fetch first from my_cursor into @name
print @name
/* update 个人资料 set 姓名=zzg where current of my_cursor */
/* delete from 个人资料 where current of my_cursor */
close my_cursor
deallocate my_cursor
正文 

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » SQL Server 2000游标使用方法-数据库专栏,SQL Server
分享到: 更多 (0)