Re: LIMIT clause and long timings - Mailing list pgsql-novice

From Christoph Della Valle
Subject Re: LIMIT clause and long timings
Date
Msg-id 442A205C.40907@goetheanum.ch
Whole thread Raw
In response to Re: LIMIT clause and long timings  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-novice
would it be faster to use
SELECT * FROM banche ORDER BY banca DESC LIMIT 10 OFFSET 0;

the sorting is done anyway, so at least we don't have to scan through
the table to get the last 10 records?
or is sorting ASC less timeconsuming than sorting DESC?

regards, christoph

Tom Lane schrieb:
> Andrea <andrea.b73@email.it> writes:
>
>>Then I have tried:
>>SELECT * FROM banche ORDER BY banca LIMIT 10 OFFSET 34000;
>>[....]
>>(10 rows)
>
>
>>Time: 2433,000 ms
>
>
>>Why do I get this big timing???
>
>
> Because the system has to scan through 34000 rows before it gets to the
> ten you asked for.  OFFSET is not some bit of black magic, it just
> causes the executor to discard the first N rows it's computed rather
> than sending them over to the client.
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>
>

pgsql-novice by date:

Previous
From: John DeSoi
Date:
Subject: Re: PHP libpq Version != Actual PGSQL Version
Next
From: "Daniel T. Staal"
Date:
Subject: Re: Non-Unique intems