Re: select where id=random()*something returns two results - Mailing list pgsql-bugs

From Ulrich Meis
Subject Re: select where id=random()*something returns two results
Date
Msg-id 000101c3803a$e05bffd0$9e318286@DAYWALK
Whole thread Raw
In response to Re: select where id=random()*something returns two results  (Jean-Luc Lachance <jllachan@nsd.ca>)
Responses Re: select where id=random()*something returns two results  (Rod Taylor <rbt@rbt.ca>)
List pgsql-bugs
> -----Original Message-----
> From: pgsql-bugs-owner@postgresql.org [mailto:pgsql-bugs-
> owner@postgresql.org] On Behalf Of Jean-Luc Lachance
> Sent: Friday, September 19, 2003 4:44 PM
> To: Rod Taylor
> Cc: Ulrich Meis; pgsql-bugs@postgresql.org
> Subject: Re: [BUGS] select where id=random()*something returns two
results
>
> Rod,
>
> If the table has 100,000 tupples your query is generating 100,000 new
> tupples...
> Try:
>
> select * from quotes where id = (
>   select int8( 1 + random() * (
>     select id from quotes order by id desc limit 1)));
>

How about

select * from quotes where id=1+int8((select random())*(select max(id)
from quotes));

It works, but is it more or less efficient?

pgsql-bugs by date:

Previous
From: Ulrich Meis
Date:
Subject: Re: select where id=random()*something returns two results
Next
From: Rod Taylor
Date:
Subject: Re: select where id=random()*something returns two results