标签:class 定义 _id where begin update floor statistic cost
1 ---20161107,循环执行sql语句 2 3 declare @i int --定义变量 4 set @i=45 5 while @i<=106 --设置循环条件 6 begin 7 --执行语句 8 update MMS_T_D_MEMatStatistics 9 10 11 --rand():返回0-1的随机数; 12 --ceil(X):返回 大于等于 X的最小整数; 13 --floor(x)与 ceil()相反,产生小于等于指定值(x)的最大整数 14 15 ---获取1-1000之间的随机数 16 set pro_cost=CEILING(rand()*1000),worker_cost=CEILING(rand()*1000), 17 price=CEILING(rand()*1000),plan_value=CEILING(rand()*1000) 18 where event_id=23 and id0=@i 19 20 set @i=@i+1 21 end
标签:class 定义 _id where begin update floor statistic cost
原文地址:http://www.cnblogs.com/lyd2016/p/6039768.html