WEB开发网
开发学院数据库MSSQL Server SQL Server 2000游标使用方法 阅读

SQL Server 2000游标使用方法

 2007-11-11 10:57:35 来源:WEB开发网   
核心提示: 游标使用方法:use db1declare my_cursor cursor scroll dynamic /*scroll表示可随意移动游标指针(否则只能向前),dynamic表示可以读写游标(否则游标只读)*/forselect 姓名 from 个人资料open my_curso


   
游标使用方法:
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
正文

Tags:SQL Server 游标

编辑录入:coldstar [复制链接] [打 印]
赞助商链接