Re: LIMIT BASED ON PERCENT - Mailing list pgsql-sql

From Pavel Stehule
Subject Re: LIMIT BASED ON PERCENT
Date
Msg-id 162867790911181139s38dd9ae4n7b1474523d3f2c3b@mail.gmail.com
Whole thread Raw
In response to Re: LIMIT BASED ON PERCENT  (Lee Hachadoorian <lee.hachadoorian@gmail.com>)
List pgsql-sql
2009/11/18 Lee Hachadoorian <lee.hachadoorian@gmail.com>:
> On Wed, Nov 18, 2009 at 2:30 PM, Pavel Stehule <pavel.stehule@gmail.com> wrote:
>> yes, and don't use 20%.
>>
>> select * from foo order by somecol limit (select (count(*)*0.2)::int from foo)
>>
>> Regards
>> Pavel
>
> Is this faster on a large table? Because (select (count(*)*20/100)) worked fine.
>

this is +/- same - 20/100 is maybe about 0.000001% faster - you don't
need one float to query cast, but this operation is only one pqr
query. The problem is two  full scan of table.

Pavel


pgsql-sql by date:

Previous
From: Pavel Stehule
Date:
Subject: Re: LIMIT BASED ON PERCENT
Next
From: Kris Kewley
Date:
Subject: Re: LIMIT BASED ON PERCENT