SQL函数中不能使用rand()函数又一解决办法

今天需要在函数中产生一个5~10之间的随机数,不假思索的写了如下代码:

Create Function XX
(
	@Price decimal(18,2)
)
RETURNS decimal(18,2)
AS
BEGIN
	-- Declare the return variable here
	DECLARE @Result decimal(18,2)

	if(@Price is null)
		set @Result=0.0
	else
		set @Result=@Price*(1+convert(int,5+rand()*5)/100)

	RETURN @Result
END

执行后收到“在函数内对带副作用的运算符 'rand' 的使用无效。”的错误。

一般来说,可以使用视图的办法,参考这里http://topic.csdn.net/u/20070629/18/ed06aed9-6332-4185-af71-558fab8504f8.html

用视图很麻烦,但是由于我的需求是产生5~10的数,就想到用时间来解决。通过毫秒值来获取,同样可以达到随机数效果。修改如下:

set @Result=@Price*(1+convert(int,Datepart(ms,getdate())/200+5))

如此就解决了随机数的问题。

你可能感兴趣的:(sql,function,null)