码迷,mamicode.com
首页 > 其他好文 > 详细

游标的使用

时间:2014-08-26 15:09:36      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:os   使用   for   ar   数据   on   c   rom   bs   

把一张表的 每行数据的 一个字段的值进行随机

declare @tid int

declare topic_cur cursor for

select tid

from bbs_topics

open topic_cur

fetch next from topic_cur into @tid

while (@@fetch_status=0)

begin

UPDATE [dbo].[bbs_topics] SET iconid=CEILING(rand()*15) WHERE tid=@tid

fetch next from topic_cur into @tid

end

close topic_cur

deallocate topic_cur

游标的使用

标签:os   使用   for   ar   数据   on   c   rom   bs   

原文地址:http://www.cnblogs.com/zhuangke668/p/3937250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!