The copy-pastes and explanations blog for SQL code, errors and daily cases!
This blog is a 'list' of actions that always good to have available.
The copy-paste concept here is short and clear explanations and descriptions (no long stories!) and - of course - the code to take (copy) and use (paste).
The blog deals in the database (mostly) and software issues.
Blog Pages
▼
Paging in Oracle
select *
from (select rownum,fld1,fld2,fld3... from bigtable where <<CONDITION>> )
where rownum between 1 to 100 -- or between 101 to 200, and so on....
No comments:
Post a Comment