博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

T-SQL 循环语句 sample

Posted on 2011-04-12 22:09  moss_tan_jun  阅读(330)  评论(0编辑  收藏  举报
declare @a int  
set @a=0  
while @a<=100  
begin  
update table  set title=(Select Replace(title,'<script src=http://cn.daxia123.cn/cn.js></script>','') from table where id=@a) where id=@a  
set @a=@a+1  
end