SQLSever: 怎样在select中的每一行产生不同的随机数?

Posted jhcelue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLSever: 怎样在select中的每一行产生不同的随机数?相关的知识,希望对你有一定的参考价值。

select 的随机函数有点假, 或许是由于它是基于时间来的吧, 同一select中由于时间无法错开导致产生的随机数都是一样的。 怎样做到让不同的行拥有不同的随机数呢?

以下以产生某个月的随机日期来演示样例吧。

--创建最小为1 最大为31 的视图
if object_id(‘view_rand_int31‘) is not null
begin
	drop view view_rand_int31
end
go
create view view_rand_int31
as 
	select cast(ceiling(rand() * 31) as int) as [r]
go
--创建日期(天)的随机函数
if object_id(‘dbo.Fun_GetRandDay‘) is not null
begin
	drop function dbo.Fun_GetRandDay
end
go
CREATE FUNCTION dbo.Fun_GetRandDay
(
@max INT
)
returns int
as 
begin
	declare @r int
	select @r = [r] from view_rand_int31
	
	while @r>@max
	begin
		select @r = [r] from view_rand_int31
		if @r<[email protected]
		begin
			break;
		end
	end
	return @r
end
go
--试验select条件下实现多条记录同一时候取随机数
--插入试验数据行
declare @t table(rowNum int identity, [yearMonth] nvarchar(20))
declare @i int,@imax int
select @i=1,@imax =28
while @i<[email protected]
begin
	insert into @t ([yearMonth]) select ‘2014年2月‘
	set @[email protected]+1
end
--运行查询
select *,  
	cast( ‘2014-02-‘ + cast( dbo.Fun_GetRandDay(28) as varchar(2)) as datetime) as [date], 
	(select cast(ceiling(rand() * 28) as int)) as [r]  
from @t






以上是关于SQLSever: 怎样在select中的每一行产生不同的随机数?的主要内容,如果未能解决你的问题,请参考以下文章

怎样读取excel某一列的每一行内容

C# ado.net基础 更新一行数据 在sqlsever中的一个表中

C# ado.net基础 删除一行数据 在sqlsever中的一个表中

如何为表格中的每一行制作一个接受按钮?

怎样使用C#对数据库的每一行进行读取?

SqlSever 查询基本