I am trying to generate a random integer for each row I select between 1 and 60 as timer.
SELECT downloads.date, products.*, (FLOOR(1 + RAND() * 60)) AS time
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)?