摘要: declare @i int set @i=1 while @i<(10000)begin INSERT INTO [Table]( [IDi] ,[IDo] ,[Synci] ) ( SELECT top 1 [IDi] ,@i ,[Synci] FROM [Table] ) set @i=@i+1 end 阅读全文
posted @ 2014-03-31 13:50 ahuo 阅读(390) 评论(0) 推荐(0) 编辑