I am planning to use JDBC Pagination with Oracle (Query based technique ) No caching of results . When i tried to use rownum with between Option , it didn't gave me any results
select * from mytable where rownum between 10 and 20;
But this gave me results .
select * from mytable where rownum < 20;
Please tel me How to solve this ??