Last active
January 23, 2019 16:20
-
-
Save kllaudyo/de6d19e93d28c08bb6c44cb3ed32dc04 to your computer and use it in GitHub Desktop.
Paginação Oracle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select x.* | |
from ( | |
--aqui dentro vai o seu sql normalmente, com where e etc.. | |
select /*+ FIRST_ROWS(25)*/ --aqui indice de velocidade do próprio oracle | |
nu_expediente, | |
row_number() over (order by dt_documento desc, co_seq_documento) rn --ordene pelo que deseja e também por algo único | |
from tb_documento | |
) x | |
where x.rn between 1 and 25 --aqui tu pagina, a pagina dois é 26 and 50 | |
order by x.rn; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment