Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Returning Row 20 to 29

Re: Returning Row 20 to 29

From: Stephan Schaefer <stephan.schaefer_at_camline.com>
Date: 1998/02/19
Message-ID: <34EBE505.30A4E582@camline.com>#1/1

Huy V. Le wrote:

> But let say you want to do a second query that will return row 20 to
> 29.

select
  col1,col2
from
  ( select

      rownum n,col1,col2
    from
      mytable
  )
where
  n between 20 and 29
;

Stephan Schaefer
stesch_at_camline.com Received on Thu Feb 19 1998 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US