Sql中进行循环操作
摘要:
declare @i intdeclare @base varchar(10)set @i=10while(@i<=20)beginset @base=right('00'+cast(@i as varchar(10)),6)update TagInfo set tagID=@base,oldManID=@base where TagInfo.ID=@iset @i=@i+1end人家说 程序员需要比较懒 然后今天试了一下,遇到问题的时候 并不是使用马上想到的方法进行操作,思考一下,然后或许就有新发现 阅读全文
posted @ 2012-03-14 17:25 aerkate 阅读(290) 评论(0) 推荐(0) 编辑