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

SQL语句生成指定范围内随机数

时间:2016-05-22 21:40:01      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

1、生成随机实型数据

create procedure awf_RandDouble 
   @min dec(14,2),
   @max dec(14,2), 
   @result dec(14,2) output
as 
begin
	set @result= cast((rand()*(@max-@min)+@min) as dec(14,2))
    return @result
end

  

2、生成随机整型数据

create procedure awf_RandInt 
   @min int,
   @max int, 
   @result int output
as 
begin
	set @result= cast((rand()*(@max-@min)+@min) as int)
    return @result
end

  

SQL语句生成指定范围内随机数

标签:

原文地址:http://www.cnblogs.com/easypass/p/5517813.html

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