码迷,mamicode.com
首页 > 数据库 > 详细

SQL语句学习笔记

时间:2016-11-07 17:41:28      阅读:210      评论:0      收藏:0      [点我收藏+]

标签: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

 

SQL语句学习笔记

标签:class   定义   _id   where   begin   update   floor   statistic   cost   

原文地址:http://www.cnblogs.com/lyd2016/p/6039768.html

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