vote up 7 vote down star
3

I'm running a SQL query on SQL Server 2005, and in addition to 2 columns being queried from the database, I'd also like to return 1 column of random numbers along with them. I tried this:

select column1, column2, floor(rand() * 10000) as column3 from table1

...which kinda works, but the problem is that this query returns the same random number on every row. It's a different number each time you run the query, but it doesn't vary from row to row. How can I do this and get a new random number for each row?

flag

Have a look at my answer, the answer you marked correct is incorrect (you asked for numbers between 0 and 10000) and inefficient. – Sam Saffron Jan 29 at 22:14
So... you voted down the question because you don't like the answer I chose? – Joshua Carmody Jan 30 at 15:10
I've accepted your answer instead, because it is objectively better (although Adam's did what I needed as well). However, I want to emphasize that questions should not be voted down (or up) based on the answers attached to them. Please vote based on the merits of the question. – Joshua Carmody Jan 30 at 15:16
See: stackoverflow.com/questions/493739/… – Sam Saffron Jan 30 at 21:02
I gave you a +1 because now that it is correct, note the correct answer is Timothys I get no points for it ... – Sam Saffron Jan 30 at 21:03
show 1 more comment

10 Answers

vote up 10 vote down check

I realize this is an older post... but you don't need a view.

select column1, column2, 
  ABS(CAST(CAST(NEWID() AS VARBINARY) AS int)) % 10000 as column3 
from table1
link|flag
How about you take this answer, I'll delete mine and add the mod to yours – Sam Saffron Jan 29 at 12:58
I also get to give this a +1 :) – Sam Saffron Jan 29 at 13:00
vote up 0 vote down

This snippet seems to provide a reasonable substitute for rand() in that it returns a float between 0.0 and 1.0. It uses only the last 3 bytes provided by newid() so total randomness may be slightly different than the conversion to VARBINARY then INT then modding from the recommended answer. Have not had a chance to test relative performance but seems fast enough (and random enough) for my purposes.

SELECT CAST(SubString(CONVERT(binary(16), newid()), 14, 3) AS INT) / 16777216.0 AS R
link|flag
vote up 0 vote down

According to my testing, the answer above doesn't generate a value of 10000 ever. This probably isn't much of a problem when you are generating a random between 1 and 10000, but the same algorithm between 1 and 5 would be noticable. Add 1 to your mod.

link|flag
The question wasn't about generating random numbers in a specific range. Any random numbers would do. 10000 is just an arbitrary number I used in my code example. – Joshua Carmody Aug 6 at 13:19
vote up 4 vote down

WARNING

Adam's answer involving the view is very inefficient and for very large sets can take out your database for quite a while, I would strongly recommend against using it on a regular basis or in situations where you need to populate large tables in production.

Instead you could use this answer.

Proof:

CREATE VIEW vRandNumber
AS
SELECT RAND() as RandNumber

go 

CREATE FUNCTION RandNumber()
RETURNS float
AS
  BEGIN
  RETURN (SELECT RandNumber FROM vRandNumber)
  END

go 

create table bigtable(i int)

go 

insert into bigtable 
select top 100000 1 from sysobjects  a
join sysobjects b on 1=1

go 

select cast(dbo.RandNumber() * 10000 as integer) as r into #t from bigtable 
-- CPU (1607) READS (204639) DURATION (1551)

go

select ABS(CAST(CAST(NEWID() AS VARBINARY) AS int)) % 10000 as r  into #t1 
from bigtable
-- Runs 15 times faster - CPU (78) READS (809) DURATION (99)

Profiler trace:

alt text

This is proof that stuff is random enough for numbers between 0 to 9999

-- proof that stuff is random enough 
select avg(r) from #t
-- 5004
select STDEV(r) from #t
-- 2895.1999 

select avg(r) from #t1
-- 4992
select STDEV(r) from #t1
-- 2881.44 


select r,count(r) from #t
group by r 
-- 10000 rows returned 

select r,count(r) from #t1
group by r 
-- 10000 row returned
link|flag
How random were the numbers in each case? – ck Jan 29 at 23:22
I will confirm that for numbers between 1 and 10000, hold tight – Sam Saffron Jan 29 at 23:24
expanded answer with proof that stuff is random – Sam Saffron Jan 29 at 23:31
vote up 0 vote down

newid() i believe is very resource intensive. i recall trying that method on a table of a few million records and the performance wasn't nearly as good as rand().

link|flag
vote up 0 vote down

You might like to consider generating a UUID instead of a random number using the newid function. These are guaranteed to be unique each time generated whereas there is a significant chance that some duplication will occur with a straightforward random number (and depending on what you're using it for could give you a phenominally hard to debug error at a later point)

link|flag
vote up 2 vote down

Adam's answer works really well, so I marked it as accepted. While I was waiting for an answer though, I also found this blog entry with a few other (slightly less random) methods. Kaboing's method was among them.

http://blog.sqlauthority.com/2007/04/29/sql-server-random-number-generator-script-sql-query/

link|flag
vote up 0 vote down

select column1, column2, cast(new_id() as varchar(10)) as column3 from table1

link|flag
vote up 0 vote down

For SQLServer, there are a couple of options.
1. A while loop to update an empty column with one random number at a time
2. A .net Assembly that contains a function that returns a random number

link|flag
vote up 1 vote down

You need to use a UDF

first:

CREATE VIEW vRandNumber
AS
SELECT RAND() as RandNumber

second:

CREATE FUNCTION RandNumber()
RETURNS float
AS
  BEGIN
  RETURN (SELECT RandNumber FROM vRandNumber)
  END

test:

SELECT dbo.RandNumber(), *
FROM <table>

Above borrowed from Jeff's SQL Server Blog

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.