Sequencial Incremental Rows result [message #332940] |
Thu, 10 July 2008 03:03  |
agassis
Messages: 4 Registered: June 2008 Location: UK
|
Junior Member |

|
|
I need to select say first 10 rows and the same query should return next sequencial 10 rows when i execute again ,
Pls.let me know if this is possible in oracle
example :
SELECT id
FROM TABLEA
WHERE rownum <=10
ORDER BY id
first time execution result1 : 1,2,3,4,5,6,7,8,9,10
next time the query should result in
second time execution result2 : 11,12, 13,14,15,16,17,18,19,20
Your comments & sugesstion are much appreciated. Let me know if this is not clear.Thanks
|
|
|
|
|