Re: Limiting number of records to show.

From: "Duncan Adams (DNS)" <duncan(dot)adams(at)vcontractor(dot)co(dot)za>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Limiting number of records to show.
Date: 2002-05-03 10:00:04
Message-ID: 7DD34E6DF5CD1B4283DDAB96A855DCED2F32AB@vodabemail1.vodacom.co.za
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

u could use.

select * from <table> limit 1000 offset 2000;

-----Original Message-----
From: Wim [mailto:wdh(at)belbone(dot)be]
Sent: Friday, May 03, 2002 10:47 AM
To: pgsql-novice(at)postgresql(dot)org
Subject: [NOVICE] Limiting number of records to show.

Hello,

I have a table with over 1.000.000 records. I'd like to limit the
maximum number of records to display, so if one my users opens the whole
table, he will see only for example 1000 records.
If I don't limit and they open the whole table, the server's CPU-load
raises to 150...
I searched the docs, but couldn't find the info....

Is this possible? If yes, how do I do this?

Thanx!

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Wim 2002-05-03 10:26:51 Re: Limiting number of records to show.
Previous Message Wim 2002-05-03 08:47:01 Limiting number of records to show.