Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: limiting rows returned ?
Use rownum which is a variable counting the number of rows returned so far
e.g.
select * from table
where rownum < 2;
![]() |
![]() |