标签:
游标
可以逐行操作表中的数据,性能低,一般不使用。除非用别的方法无法执行的时候才考虑使用游标。
--游标的定义
declare s1 cursor for select oname,ocount,oprice from tblorders
--在访问游标中某行的数据时,需要声明变量,和查找的数据相对应。
declare @name nvarchar(10)
declare @count int
declare @price money
--打开游标
open s1
--通过游标从结果集中取数据,注意:每次取一行的值
fetch s1 into @name,@count,@price
while(@@FETCH_STATUS=0)
begin
set @price=@price+RAND(100)
update TblOrders set oprice=@price where oname=@name and ocount=@count
fetch s1 into @name,@count,@price
end
--关闭游标
close s1
--释放游标
deallocate s1
标签:
原文地址:http://www.cnblogs.com/zk-ljc/p/5569786.html