Hi,
I have table with 500+ records. When I run the following select it returns me the 1st 10
SELECT column FROM table WHERE ROWNUM BETWEEN 1 AND 10
Now if I run the following it does not return me any data
SELECT column FROM table WHERE ROWNUM BETWEEN 11 AND 20
I am building an app. with pagination i.e. want to show 10 records a time but the query above is not returning anything. What else I can use. Thanks