Newsgroups: comp.databases.oracle.misc
Subject: Re: limiting rows returned ?
References: <5j2tdu$lv4@cronkite.ocis.temple.edu>
gopal@astro.temple.edu (Gopal) writes:
>Hi Folks,
>
>We are using Oracle 7.3.x on Win/Nt 3.51.
>I am new to Oracle and I have a question about limiting the rows
>being returned by a select statement.
>In MS SQL Server or Sybase you can say
>set rowcount 1
>select * from ...
>and only one row will be returned.
>Is there a similar option in Oracle which can be used in SQL plus and
>stored procedure ?
>Regards
>Gopal
Gopal,
Use the ROWNUM clause:
SELECT * FROM ... WHERE ROWNUM < 2;
-Ari Kaplan
Independent Oracle DBA Consultant
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 50+ technical tips, visit my Web Page: <->
<-> <->
<-> www.arikaplan.com <->
<-> <->
<-> email: akaplan@interaccess.com <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
Back to Ari Kaplan's Home Page