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

insert into newly_acquired_stocks
        select * from my_stocks
        where rownum < = (select count(*)/2 from my_stocks);

this will work out check it out