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: Selecting a range of records

Re: Selecting a range of records

From: Knut Talman <knut.talman_at_mytoys.de>
Date: Thu, 05 Jul 2001 11:17:06 +0200
Message-ID: <3B443092.ACEC09A4@mytoys.de>

> I want to make a select of a table with a great amount of
> records and I only want to select only a range of them, for example,
> records between number 32 and 112.

If you want to select all records where row number is between x and y, that is not possible.
If you want to compare a specific column just use

select * from myTable where myColumn between 32 and 112;

Regards,

Knut Received on Thu Jul 05 2001 - 04:17:06 CDT

Original text of this message

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