Re: How to limit # of rows returned by SELECT
From: Ell <ell_at_access4.digex.net>
Date: 1996/02/09
Message-ID: <4fe9kj$k4e_at_news4.digex.net>#1/1
Date: 1996/02/09
Message-ID: <4fe9kj$k4e_at_news4.digex.net>#1/1
Anton Dischner (dischner_at_med.uni-muenchen.de) wrote:
: Hi Gordon,
:
: try select * from <your_table> where rownum < 11;
:
: for the first ten items.
: Note that the rownum is calculated last, so any other where clauses with
: rownum will probably not work.
Or: set rowcount X
which specifies that subsequent operations act on X rows.
Elliott Received on Fri Feb 09 1996 - 00:00:00 CET