How to get mysql random integer range? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T22:50:04Zhttp://stackoverflow.com/feeds/question/984396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range0How to get mysql random integer range?kevzettler2009-06-11T23:57:12Z2009-06-16T01:02:30Z
<p>I am trying to generate a random integer for each row I select between 1 and 60 as timer.</p>
<pre><code>SELECT downloads.date, products.*, (FLOOR(1 + RAND() * 60)) AS timer
</code></pre>
<p>I have searched and keep coming up to this FLOOR function as how to select a random integer in a range. This is giving me a 1 for every row.
What am I missing?</p>
<p>I am on mysql 5.0.75</p>
<p>Heres the rest of the query I belive it might be a nesting issue</p>
<pre><code>SELECT *
FROM (
SELECT downloads.date, products.*, FLOOR(1 + (RAND() * 60)) AS randomtimer,
(
SELECT COUNT( * )
FROM distros
WHERE distros.product_id = products.product_id
) AS distro_count,
(SELECT COUNT(*) FROM downloads WHERE downloads.product_id = products.product_id) AS true_downloads
FROM downloads
INNER JOIN products ON downloads.product_id = downloads.product_id
) AS count_table
WHERE count_table.distro_count > 0
AND count_table.active = 1
ORDER BY count_table.randomtimer , count_table.date DESC LIMIT 10
</code></pre>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/984411#9844110Answer by Bill Karwin for How to get mysql random integer range?Bill Karwin2009-06-12T00:03:50Z2009-06-12T00:03:50Z<p>It works fine when I try it.</p>
<p>Does <code>products.*</code> include a column named "<code>timer</code>"? And you're fetching it into an associative array (keyed by column name) in your application? It could be the <code>timer</code> column is overwriting your <code>timer</code> expression in the associative array. I've seen that happen before. </p>
<p>Change "<code>AS timer</code>" to "<code>AS randomtimer</code>," to be sure.</p>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/984427#9844270Answer by Jaime for How to get mysql random integer range?Jaime2009-06-12T00:07:31Z2009-06-12T00:07:31Z<p>I'm running your query and it does give me a random number for each row.... maybe has something to do with the name of the random (timer)?</p>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/984429#9844290Answer by Ryan Oberoi for How to get mysql random integer range?Ryan Oberoi2009-06-12T00:08:38Z2009-06-12T00:08:38Z<p>This is working for me. Your mysql version maybe?</p>
<pre><code>SELECT id, (FLOOR( 1 + RAND( ) *60 )) AS timer
FROM users
LIMIT 0 , 30
</code></pre>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/984432#9844320Answer by Christopher Morley for How to get mysql random integer range?Christopher Morley2009-06-12T00:10:06Z2009-06-12T00:10:06Z<p>The output of the RAND function will always be a value between 0 and 1.</p>
<p>Try this:</p>
<p>SELECT downloads.date, products.*, (CAST(RAND() * 60 AS INT) + 1) AS timer</p>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/999173#9991730Answer by kevzettler for How to get mysql random integer range?kevzettler2009-06-16T01:02:30Z2009-06-16T01:02:30Z<p>I ended up generating the random numbers in PHP, in an array the same length as the query results then sorting that and echoing it in a loop with the query results.</p>