Re: where to start with this procedure ? - Mailing list pgsql-sql

From Andrei Bintintan
Subject Re: where to start with this procedure ?
Date
Msg-id 00bb01c43e3a$7d33f980$0b00a8c0@forge
Whole thread Raw
In response to where to start with this procedure ?  (Andreas <maps.on@gmx.net>)
Responses Re: where to start with this procedure ?
List pgsql-sql
Hi,

Use the Offset and Limit in the SQL query.

http://developer.postgresql.org/docs/postgres/queries-limit.html

For example:

SELECT select_list   FROM table_expression   WHERE condition
Let's supose that this query returnes normaly 30000 elements.

SELECT select_list   FROM table_expression   WHERE condition   LIMIT 50   OFFSET 10000

This query will return 50 elements starting with the 10000 elements... so
the elemenst from 10000 to 10050.

Hope that helps.

Best regards,
Andy.

----- Original Message -----
From: "Andreas" <maps.on@gmx.net>
To: <pgsql-sql@postgresql.org>
Sent: Thursday, May 20, 2004 3:33 AM
Subject: [SQL] where to start with this procedure ?


> Hi,
> I know a bit of SQL but not exactly a lot so I ran into this problem.
>
> I have tables on the server that get joined in a view.
> That's OK.
>
> Now I need just a couple of records say 10-100 of 30 000 which could
> easily be filtered by a integer key.
> As of now I have to pull the whole lot into Access and let it do the
> filtering. That doesn't play nice on our network.
>
> Could someone kick me into the right direction where to learn stuff like:
>
> function grabem(x integer) recordset
> (
>    grabem = select * from my_view where key = x
> )
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faqs/FAQ.html
>




pgsql-sql by date:

Previous
From: Andreas
Date:
Subject: where to start with this procedure ?
Next
From: Andreas
Date:
Subject: Re: where to start with this procedure ?