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: limit clause of a select command

Re: limit clause of a select command

From: Jacques Maritz <jacques.maritz_at_wanadoo.nl>
Date: Sat, 27 Nov 1999 17:11:47 +0100
Message-ID: <81ovdb$2o00$1@buty.wanadoo.nl>


Hi,
it is not valid in Oracle 7,

Use:

Select *
From a
Where RowNum <= 10;

This command will return the first 10 rows

Greetings

Julien GILLE heeft geschreven in bericht <383EE603.3BB3FA74_at_alban.elzeo.com>...
>I would like to know if this command is valid on Oracle 7 :
>
>select * from a limit 10;
>
>My goal is to have only the first 10 lines of the result view.
>
>This command works fine wirh MySQL and PostgreSQL.
>
>Thanks.
>
>
>
Received on Sat Nov 27 1999 - 10:11:47 CST

Original text of this message

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