SQL语句生成指定范围内随机数
Posted EasyPass
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL语句生成指定范围内随机数相关的知识,希望对你有一定的参考价值。
1、生成随机实型数据
create procedure awf_RandDouble @min dec(14,2), @max dec(14,2), @result dec(14,2) output as begin set @result= cast((rand()*(@[email protected])[email protected]) 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()*(@[email protected])[email protected]) as int) return @result end
以上是关于SQL语句生成指定范围内随机数的主要内容,如果未能解决你的问题,请参考以下文章