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

Home -> Community -> Usenet -> c.d.o.server -> Re: ROWNUM problem...

Re: ROWNUM problem...

From: Hans Duijn <hans_duijn_at_inventive.nl>
Date: 4 May 1998 07:18:54 GMT
Message-ID: <6ijq4u$1d@news3.euro.net>


...you can use a view to do this, try the following:

create view vwtest as select rownum the_rownum,name from yourcolumn

...now you can make a 'subselection' with the query:

select * from vwtest where the_rownum between 10 and 20

However, now you probably will run into problems when you want to retrieve a sorted selection.

Succes anyway Received on Mon May 04 1998 - 02:18:54 CDT

Original text of this message

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