在表a中有1000条数据,用pl/sql查询显示分页,每页显示20个数据用三层嵌套
select * from   
        (select rownum no,b.* from   
                   (select * from a order by code asc) b  
         where rownum <= 20) c  
where c.no >= 1; 这样只能实现显示1到20的数据,请问怎么显示后面的?