首页  :: 新随笔  :: 订阅 订阅  :: 管理

SQL 产生从N到M的随机整数

Posted on 2008-07-23 13:54  礼拜一  阅读(572)  评论(0编辑  收藏  举报
/*产生从N到M的随机整数,假设N、M都是整数*/
declare @M int,@N int
set @N=6
set @M=13
select cast((rand()*(@M-@N)+@N) as int)