Pular para o conteúdo
#76699
rosterne
Participante

    Use o rownum.

    Ex:

    select * from tabela where rownum <=10;

    Em ordem decrescente:

    Ex:
    select * from (select * from tabela order by 1) where rownum <=10;

    Abraço.