Can anyone help, how to retrieve exactly 2nd row from the table in oracle?
Thanks for your answers,now i found the solution for this,
select * from (select rownum rn,column1,column2,...,columnn from tablename) where rn=2
Now you can check this and post your valuable comments.