I know there are simmilar questions out there, but here`s my implementation on a fast random select row:

SELECT i.id, i.thumb_img, i.af, i.width, i.height
FROM images_detail id
JOIN images AS i ON id.imageid = i.id
WHERE id.imageid >=1
AND id.newsroom =1
AND i.width > i.height
AND id.imageid >= FLOOR( 1 + RAND( ) *23111593 )
LIMIT 1 

The problem with this query is that indifferent of the RANDOM expression in id.imageid >= FLOOR( 1 + RAND( ) *23111593 ) it always returns the same ID, why? Any help please?

Later edit:

The query takes 0.0005 seconds, using EXPLAIN, it reports back USING WHERE and 12993 ROWS returned

The Id's are auto-incremented, it's not 23111593 because RAND() returns 0.xxxxx so RAND()*23111593, returns about 12993 rows. The problem is, the same ID is at the top and I don`t want to call an ORDER BY clause.

link|improve this question

78% accept rate
How many results are returned if you take off the limit and the RAND section of the where clause? – malonso Jan 31 at 12:54
@malonso I`ve edited my post to include further details. Thanks! – Gabriel Jan 31 at 13:06
What about the distribution of imageid's? Maybe all of the images have ids > 23111593? – bububaba Jan 31 at 13:15
@bububaba The Id`s are auto-incremented, it`s not 23111593 because RAND() returns 0.xxxxx so RAND()*23111593, returns about 12993 rows. The problem is, the same ID is at the top and I don`t want to call an ORDER BY clause. – Gabriel Jan 31 at 13:19
feedback

3 Answers

http://www.greggdev.com/web/articles.php?id=6

or use

ORDER BY RAND() LIMIT 0,1;

link|improve this answer
very slow, especially regarding seveal millions of rows :P using EXPLAIN it states USING TEMPORARY, USING FILESORT...BAD – Gabriel Jan 31 at 13:00
feedback

Do you have any "imageid" in your database that is greater than the span you define (1<=X<=23111593)?

You might have only one entry in the DB.

(also, keep in mind that you might only have one that actually fits the query of id.newsroom = 1, i.width>i.height etc.)

link|improve this answer
there are 12000 that fit the WHERE conditions above – Gabriel Jan 31 at 13:01
feedback

Eventually I've loaded ALL the results in an array, stored it in a cache and made in PHP $key=rand(0,sizeof(array)) and then used it as follows array[$key]['property']

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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