Oracle笔记:分页查询
摘要:
查询前三条记录:select * from (select a1.*,rownum rn from (select * from emp) a1 where rownum<=3);查询第三到六条记录:select * from (select a1.*,rownum rn from (select * from emp) a1 where rownum<=6) where rn>3;如要指定查询列,排序等,只需修改最里层的子查询.编写分页存储过程--编写一个存储过程,要求可以输入表名、每页显示记录数、当前页、--返回总记录数、总页数和返回的结果集。create or repl 阅读全文
posted @ 2013-03-29 00:00 calliopsis 阅读(149) 评论(0) 推荐(0) 编辑