Can one retrieve only rows X to Y from a table?
To display rows 5 to 7, construct a query like this: SELECT * FROM tableX WHERE rowid in ( SELECT rowid FROM tableX WHERE rownum <= 7 MINUS SELECT rowid FROM tableX WHERE rownum Please note, there is no explicit row order in a relational database. However, this query is quite fun and may even help in the odd situation.