How to get mysql random integer range? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T22:50:04Z http://stackoverflow.com/feeds/question/984396 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range 0 How to get mysql random integer range? kevzettler 2009-06-11T23:57:12Z 2009-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 &gt; 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#984411 0 Answer by Bill Karwin for How to get mysql random integer range? Bill Karwin 2009-06-12T00:03:50Z 2009-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#984427 0 Answer by Jaime for How to get mysql random integer range? Jaime 2009-06-12T00:07:31Z 2009-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#984429 0 Answer by Ryan Oberoi for How to get mysql random integer range? Ryan Oberoi 2009-06-12T00:08:38Z 2009-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#984432 0 Answer by Christopher Morley for How to get mysql random integer range? Christopher Morley 2009-06-12T00:10:06Z 2009-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#999173 0 Answer by kevzettler for How to get mysql random integer range? kevzettler 2009-06-16T01:02:30Z 2009-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>