Re: MySQL rand() is slow on large datasets
Tried Jeff's query but only low number ids were generated. The query below solves this.
SELECT t.id FROM table t JOIN (SELECT(FLOOR(max(id) * rand())) as maxid FROM table) as tt on t.id >= tt.maxid LIMIT 1
Subject
Views
Written By
Posted
19270
July 24, 2007 08:19AM
14632
July 24, 2007 08:28AM
8019
September 02, 2007 10:30AM
10414
January 18, 2008 12:25AM
7887
May 15, 2008 03:15PM
Re: MySQL rand() is slow on large datasets
8805
May 12, 2009 10:21AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.