Re: [SQL] Limit rows - Mailing list pgsql-sql

From Oleg Bartunov
Subject Re: [SQL] Limit rows
Date
Msg-id Pine.GSO.3.96.SK.990929195544.16613A-100000@ra
Whole thread Raw
In response to Limit rows  (Mark Jewiss <Mark.Jewiss@knowledge.com>)
Responses Re: [SQL] Limit rows  (Mark Jewiss <Mark.Jewiss@knowledge.com>)
List pgsql-sql
Mark,

did you try 

select * from table  limit 5,10;

Or I  misunderstood you 
Oleg

On Wed, 29 Sep 1999, Mark Jewiss wrote:

> Date: Wed, 29 Sep 1999 16:17:03 +0100 (BST)
> From: Mark Jewiss <Mark.Jewiss@knowledge.com>
> To: pgsql-sql@postgreSQL.org
> Subject: [SQL] Limit rows
> 
> Hello,
> 
> I'm still thinking about ways to extract specific rows of data from a
> table, whilst ignoring others. i.e. I want to see rows 3-7 inclusive from
> a table.
> 
> Assume that I don't have a numerical identifier - I do, but I can't use
> that as rows from this table may be deleted at some point, thereby
> knocking the id row out of sequence.
> 
> Basically I want to be able to do something like this:
> 
> select * from table ignore 10 limit 5;
> 
> I can't use cursors, which are ideal for this I know.
> 
> Is there such a thing in SQL or pgsql specifically? If not I'll have to
> write something....
> 
> Regards,
> 
> Mark.
> -- 
> Mark Jewiss
> Knowledge Matters Limited
> http://www.knowledge.com
> 
> 
> 
> 
> ************
> 

_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83



pgsql-sql by date:

Previous
From: Mark Jewiss
Date:
Subject: Limit rows
Next
From: Mark Jewiss
Date:
Subject: Re: [SQL] Limit rows