科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道oracle的数据分页查询

oracle的数据分页查询

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  1. 最好还是利用分析函数      row_number() over ( partition by col1 order by col2 )      比如想取出100-150条记录,按照tname排序      select tname,t

作者:中国IT实验室 来源:中国IT实验室 2007年10月1日

关键字: SQL 数据库 ORACLE

  • 评论
  • 分享微博
  • 分享邮件

  1. 最好还是利用分析函数
  
  row_number() over ( partition by col1 order by col2 )
  
  比如想取出100-150条记录,按照tname排序
  
  select tname,tabtype from (
  select tname,tabtype,row_number() over ( order by tname ) rn from tab
  )
  where rn between 100 and 150;
  
  2. 直接使用rownum 虚列
  
  select tname,tabtype from (
  select tname,tabtype,rownum rn from tab where rownum <= 150
  )
  where rn >= 100;
  
  使用序列不能基于整个记录集合进行排序,如果指定了order by子句,排序的的是选出来的记录集的排序.
  ------------------------------------------------------------------------
  经过我的测试,在100万条数据的表中,检索数据的时候,方法2的速度要比方法1要快的.

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件