SQL Random number not working - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T20:51:26Zhttp://stackoverflow.com/feeds/question/1038681http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1038681/sql-random-number-not-working0SQL Random number not workingJMSA2009-06-24T14:21:18Z2009-08-30T17:40:38Z
<pre><code>declare @fieldForceCounter as int
declare @SaleDate as dateTime
declare @RandomNoSeed as decimal
set @fieldForceCounter = 1
set @SaleDate = '1 Jan 2009'
set @RandomNoSeed = 0.0
WHILE @fieldForceCounter <= 3
BEGIN
while @SaleDate <= '1 Dec 2009'
begin
INSERT INTO MonthlySales(FFCode, SaleDate, SaleValue) VALUES(@fieldForceCounter, @SaleDate, RAND(@RandomNoSeed))
set @saleDate = @saleDate + 1
set @RandomNoSeed = Rand(@RandomNoSeed) + 1
end
set @SaleDate = '1 Jan 2009'
set @fieldForceCounter = @fieldForceCounter + 1
END
GO
</code></pre>
<p>This T-SQL command was supposed to insert random values in the '<code>SaleValue</code>'-column in the '<code>MonthlySales</code>'-table.</p>
<p>But it is inserting '1' every time .</p>
<p>What can be the problem?</p>
http://stackoverflow.com/questions/1038681/sql-random-number-not-working/1038704#10387040Answer by Brian for SQL Random number not workingBrian2009-06-24T14:25:27Z2009-06-24T14:25:27Z<p>Just a guess, but often rand functions generate a number from 0-1. Try multiplying your random number by 10.</p>
http://stackoverflow.com/questions/1038681/sql-random-number-not-working/1038716#10387164Answer by Jeremy for SQL Random number not workingJeremy2009-06-24T14:27:06Z2009-08-11T16:33:43Z<p>Two problems:</p>
<ul>
<li>Firstly, the rand() function returns a number between 0 and 1.</li>
<li>Secondly, when rand() is called multiple times in the same query (e.g. for multiple rows in an update statement), it usually returns <em>the same number</em> (which I suspect your algorithm above is trying to solve, by splitting it into multiple calls)</li>
</ul>
<p>My favourite way around the second problem is to use a function that's guaranteed to return a unique value each time, like newid(), convert it to varbinary, and use it as the seed :)</p>
<p>Edit: after some testing, it seems you'll need to try using a different datatype for <code>@RandomNoSeed</code>; float behaves somewhat different to decimal, but still approaches a fixed value, so I'd recommend avoiding the use of @RandomNoSeed altogether, and simply use:</p>
<pre><code>INSERT INTO MonthlySales(FFCode, SaleDate, SaleValue)
VALUES(@fieldForceCounter, @SaleDate, RAND(convert(varbinary,newid())))
</code></pre>
http://stackoverflow.com/questions/1038681/sql-random-number-not-working/1354125#13541250Answer by gbn for SQL Random number not workinggbn2009-08-30T15:40:03Z2009-08-30T15:40:03Z<p>You have major issues here...</p>
<p><strong>Decimal issues</strong></p>
<p>The default precision/scale for decimal is 38,0. So you aren't storing any decimal part.</p>
<p>So you are only using RAND(0) for 1st iteration and RAND(1) for all subsequent iterations, which is 0.943597390424144 and 0.713591993212924</p>
<p>I can't recall how rounding/truncation applies, and I don't know what datatype SalesValue is, but rounding would give "1" every time.</p>
<p>Now, if you fix this and declare decimal correctly...</p>
<p><strong>Seeding issues</strong></p>
<p>RAND takes an <em>integer</em> seed. Seeding with 1.0001 or 1.3 or 1.999 gives the same value (0.713591993212924).</p>
<p>So, "Rand(1.713591993212924) + 1" = "RAND(1) + 1" = "1.713591993212924" for every subsequent iteration.</p>
<p>Back to square one...</p>
<p><strong>To fix</strong></p>
<ul>
<li>Get rid of @RandomNoSeed</li>
<li>Either: Generate a random integer value using CHECKSUM(NEWID())</li>
<li>Or: generate a random float value using RAND() * CHECKSUM(NEWID()) (Don't care about seed now)</li>
</ul>