Forum OpenACS Development: Re: How do I get first half rows from ORACLE table

Collapse
Posted by Dirk Gomez on
select * from
  (select a,b,c,rownum
  from foobar
  order by bla)
where rownum < 10

should do the trick.