Re: displaying records from X to Y

From: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
To: mel(at)gmanmi(dot)tv
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: displaying records from X to Y
Date: 2002-10-16 07:14:45
Message-ID: 1034752485.22818.73.camel@linda
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Wed, 2002-10-16 at 05:10, Josh Berkus wrote:
> Mel,
>
> > => select * from foo_table limit 100;
> > OR
> > => select * from foo_table order by foo_column desc limit 100;
>
> Easy:
>
> SELECT * FROM foo_table LIMIT 100 OFFSET 100;
>
> -Josh Berkus

If the query is complex and time-consuming, you might do better to use a
cursor; then the query is done once and you can fetch results from it at
will. Using LIMIT and OFFSET requires the whole query to run every
time. If you are running it in response to an interactive request for
the next chunk of data, the necessary delay is obviously undesirable.
(Another problem, if you are not in a transaction, is that rows may be
added or deleted by other sessions in between your commands, which may
cause gaps or duplications in the records you see)

Use a cursor like this:

BEGIN; -- cursors must operate in a transaction
DECLARE mycursor CURSOR FOR
SELECT * FROM complex_view;
FETCH 100 FROM mycursor; -- first 100 rows
FETCH 100 FROM mycursor; -- next 100
FETCH NEXT FROM mycursor; -- next row
FETCH BACKWARD 10 FROM mycursor; -- previous 10 rows (reversed)
END; -- end transaction and close cursor

--
Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk
Isle of Wight, UK
http://www.lfix.co.uk/oliver
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C
========================================
"But be ye doers of the word, and not hearers only,
deceiving your own selves." James 1:22

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Jules Alberts 2002-10-16 10:12:25 Re: db design question
Previous Message Duncan Adams (DNS) 2002-10-16 07:06:30 Re: displaying records from X to Y