Tôi tin rằng bạn đang tìm kiếm thứ gì đó tương tự như thế này trong Oracle:
select *
from ( select a.*, rownum rnum
from ( YOUR_QUERY_GOES_HERE -- including the order by ) a
where rownum <= MAX_ROWS )
where rnum >= MIN_ROWS
/
Cuộc thảo luận hay từ Ask Tom là tại đây