Hi,
Please let me know the result of the query below and why.
select * from emp where rownum=1;
This is getting the first record from the table EMP. And the below query is returning no records.
select * from emp where rownum=2;
Please explain how it is working.
Thanks,
Santhosh