An Oracle database table has 6 records. Now when I execute the following command
SELECT * FROM tblTry WHERE ROWNUM<=4;
then, as expected, the 1st 4 records are displayed but when I execute the following query
SELECT * FROM tblTry WHERE ROWNUM>4;
then no records are displayed!! Shouldn't the last 2 records be displayed?
Thanks,
Arpan
SELECT * FROM tblTry WHERE ROWNUM<=4;
then, as expected, the 1st 4 records are displayed but when I execute the following query
SELECT * FROM tblTry WHERE ROWNUM>4;
then no records are displayed!! Shouldn't the last 2 records be displayed?
Thanks,
Arpan