For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hi, In my table contains 50 rows. I want to select add number rows like 1,3,5,7 ... rows only. can any one give me query
I think you mean "odd numbered". Anyway, here is an example: select * from (select ename,job, ROWNUM AS rn from emp) where mod(rn, 2) <> 0;