Re: Selecting random rows efficiently - Mailing list pgsql-performance

From Jeff
Subject Re: Selecting random rows efficiently
Date
Msg-id Pine.BSF.4.44.0308300905390.829-100000@torgo.978.org
Whole thread Raw
In response to Selecting random rows efficiently  (Richard Jones <rj@last.fm>)
Responses Re: Selecting random rows efficiently  (Richard Jones <rj@last.fm>)
List pgsql-performance
On Sat, 30 Aug 2003, Richard Jones wrote:

> Hi,
> i have a table of around 3 million rows from which i regularly (twice a second
> at the moment) need to select a random row from
>
> currently i'm doing "order by rand() limit 1" - but i suspect this is
> responsible for the large load on my db server - i guess that PG is doing far
> too much work just to pick one row.
>

If you have an int id (aka serial) column then it is simple - just pick a
random number between 1 and currval('id_seq')...

or offset rand() limit 1 perhaps?

since you want random ther eis no need to bother with an order and that'll
save a sort.

--
Jeff Trout <jeff@jefftrout.com>
http://www.jefftrout.com/
http://www.stuarthamm.net/



pgsql-performance by date:

Previous
From: Richard Jones
Date:
Subject: Selecting random rows efficiently
Next
From: Richard Jones
Date:
Subject: Re: Selecting random rows efficiently