数据准备

--创建基础数据表100W行

create table test07 as
select *
from (select generate_series(1, 1000000) id,
(random() * 1000)::int c1k,
(random() * 100000)::int c100k,
(random() * 1000000)::int c1m)
order by random(); alter table test07 add primary key (id);
create index test07_c1m on test07 (c1m);
create index test07_c1k on test07 (c1k);
create index test07_c100k on test07 (c100k);

测试SQL例子

--使用 c1k between 1 and 1 条件,决定读取行数占比
--使用 ROWNUM <= 10 条件 或者 LIMIT 10,决定输出行数占比
explain analyse
select *
from (select *
from test07
where c1k between 1 and 10
order by id
) t
where rownum <= 100
limit 100
;

SQL语句的执行计划

SQL语句,会产生两种执行计划

  • 计划一:根据排序列的索引,先排序后过滤

    QUERY PLAN
    -----------------------------------------------
    Limit (cost=0.42..592.06 rows=100 width=12) (actual time=0.124..9.451 rows=100 loops=1)
    -> Index Scan using test07_pkey on test07 (cost=0.42..52779.58 rows=8936 width=12) (actual time=0.123..9.438 rows=100 loops=1)
    Filter: ((c1k >= 1) AND (c1k <= 10))
    Rows Removed by Filter: 11258
    Planning Time: 0.192 ms
    Execution Time: 9.478 ms
  • 计划二:根据过滤列的索引,先过滤后排序

    QUERY PLAN
    -----------------------------------------------
    Count (cost=6553.38..6754.44 rows=0 width=12) (actual time=11.042..11.058 rows=100 loops=1)
    Stop Keys: (ROWNUM <= 100)
    -> Sort (cost=6553.38..6575.72 rows=8936 width=12) (actual time=11.038..11.046 rows=101 loops=1)
    Sort Key: test07.id
    Sort Method: quicksort Memory: 855kB
    -> Bitmap Heap Scan on test07 (cost=192.02..5966.93 rows=8936 width=12) (actual time=3.123..9.473 rows=10031 loops=1)
    Recheck Cond: ((c1k >= 1) AND (c1k <= 10))
    Heap Blocks: exact=4586
    -> Bitmap Index Scan on test07_c1k (cost=0.00..189.79 rows=8936 width=0) (actual time=2.033..2.033 rows=10031 loops=1)
    Index Cond: ((c1k >= 1) AND (c1k <= 10))
    Planning Time: 0.195 ms
    Execution Time: 11.093 ms

    各种情况的rownum与limit的比较

    • ROWNUM

      过滤比例 输出比例 计划模式 执行时长
      < 30% 1 ~ ALL 计划二 0.1ms ~ 130 ms
      explain (analyse,buffers )
      select *
      from (select *
      from test07
      where c1k between 1 and 300
      order by id
      ) t
      where rownum <= 100; QUERY PLAN
      -----------------------------------------------
      Count (cost=43557.67..50297.35 rows=0 width=16) (actual time=80.721..80.759 rows=100 loops=1)
      Stop Keys: (ROWNUM <= 100)
      Buffers: shared hit=6262
      -> Sort (cost=43557.67..44306.53 rows=299541 width=16) (actual time=80.717..80.744 rows=101 loops=1)
      Sort Key: test07.id
      Sort Method: quicksort Memory: 26355kB
      Buffers: shared hit=6262
      -> Bitmap Heap Scan on test07 (cost=6382.72..16310.84 rows=299541 width=16) (actual time=19.502..41.889 rows=300094 loops=1)
      Recheck Cond: ((c1k >= 1) AND (c1k <= 300))
      Heap Blocks: exact=5435
      Buffers: shared hit=6262
      -> Bitmap Index Scan on test07_c1k (cost=0.00..6307.84 rows=299541 width=0) (actual time=19.105..19.105 rows=300094 loops=1)
      Index Cond: ((c1k >= 1) AND (c1k <= 300))
      Buffers: shared hit=827
      Planning Time: 0.229 ms
      Execution Time: 80.801 ms
      过滤比例 输出比例 计划模式 执行时长
      < 30% 1 ~ ALL 计划一 0.1 ms ~ 400 ms
      explain (analyse,buffers )
      select /*+ indexscan(test07) */ *
      from (select *
      from test07
      where c1k between 1 and 300
      order by id
      ) t
      where rownum <= 100; QUERY PLAN
      -----------------------------------------------
      Count (cost=0.42..58767.29 rows=0 width=16) (actual time=0.031..0.643 rows=100 loops=1)
      Stop Keys: (ROWNUM <= 100)
      Buffers: shared hit=429
      -> Index Scan using test07_pkey on test07 (cost=0.42..52776.47 rows=299541 width=16) (actual time=0.028..0.611 rows=101 loops=1)
      Filter: ((c1k >= 1) AND (c1k <= 300))
      Rows Removed by Filter: 324
      Buffers: shared hit=429
      Planning Time: 0.261 ms
      Execution Time: 0.681 ms
      过滤比例 输出比例 计划模式 执行时长
      > 30% 1 ~ ALL 计划一 0.1ms ~ 400ms
      explain (analyse,buffers )
      select *
      from (select *
      from test07
      -- where c1m between (1000000*(1-0.320))::int and 1000000
      where c1k between 1 and 400
      order by id
      ) t
      where rownum <= 100; QUERY PLAN
      -----------------------------------------------
      Count (cost=0.42..60774.27 rows=0 width=16) (actual time=0.032..0.489 rows=100 loops=1)
      Stop Keys: (ROWNUM <= 100)
      Buffers: shared hit=304
      -> Index Scan using test07_pkey on test07 (cost=0.42..52776.47 rows=399890 width=16) (actual time=0.029..0.458 rows=101 loops=1)
      Filter: ((c1k >= 1) AND (c1k <= 400))
      Rows Removed by Filter: 200
      Buffers: shared hit=304
      Planning Time: 0.197 ms
      Execution Time: 0.526 ms
    • LIMIT

      过滤比例 输出比例 计划模式 执行时长
      > 5% < 1% 计划一 < 85 ms
      < 5% < 1% 计划二 < 25 ms
      > 5% > 1% 计划二 25 ms ~ 35 ms
      < 5% > 1% 计划一 25 ms ~ 35 ms

总结

使用ROWNUM 作为输出行数的条件,不考虑 “FIRST_ROWS”的需求,仅考虑过滤条件的索引。

LIMIT更为精细的权衡过滤条件,可以获得更好的执行计划和时长。如果希望从一个大表中,更快的获得“首页”数据,建议使用LIMIT。

KingbaseES rownum 与 limit 的 执行计划区别的更多相关文章

  1. MySQL---正确使用索引、limit分页、执行计划、慢日志查询

    正确使用索引 数据库表中添加索引后确实会让查询速度起飞,但前提必须是正确的使用索引来查询,如果以错误的方式使用,则即使建立索引也会不奏效.即使建立索引,索引也不会生效: - like '%xx' se ...

  2. Oracle执行计划 explain plan

    Rowid的概念:rowid是一个伪列,既然是伪列,那么这个列就不是用户定义,而是系统自己给加上的. 对每个表都有一个rowid的伪列,但是表中并不物理存储ROWID列的值.不过你可以像使用其它列那样 ...

  3. Oracle - SPM固定执行计划

    1. 通过dbms_xplan.display_cursor查看指定sql都有哪些执行计划 SQL> select * from table(dbms_xplan.display_cursor( ...

  4. 关于T-SQL重编译那点事,内联函数和表值函数在编译生成执行计划的区别

    本文出处:http://www.cnblogs.com/wy123/p/6266724.html 最近在学习 WITH RECOMPILE和OPTION(RECOMPILE)在重编译上的区别的时候,无 ...

  5. oracle_执行计划_谓词信息和数据获取(access and filter区别) (转)

    These two terms in the Predicate Information section indicate when the data source is reduced. Simpl ...

  6. MySQL执行计划extra中的using index 和 using where using index 的区别

    本文出处:http://www.cnblogs.com/wy123/p/7366486.html (保留出处并非什么原创作品权利,本人拙作还远远达不到,仅仅是为了链接到原文,因为后续对可能存在的一些错 ...

  7. 第二百八十八节,MySQL数据库-索引、limit分页、执行计划、慢日志查询

    MySQL数据库-索引.limit分页.执行计划.慢日志查询 索引,是数据库中专门用于帮助用户快速查询数据的一种数据结构.类似于字典中的目录,查找字典内容时可以根据目录查找到数据的存放位置,然后直接获 ...

  8. 正确使用索引(sql优化),limit分页优化,执行计划,慢日志查询

    查看表相关命令 - 查看表结构   desc 表名- 查看生成表的SQL   show create table 表名- 查看索引   show index from  表名 使用索引和不使用索引 由 ...

  9. KingbaseES 如何查看应用执行的SQL的执行计划

    通过explain ,我们可以获取特定SQL 的执行计划.但对于同一条SQL,不同的变量.不同的系统负荷,其执行计划可能不同.我们要如何取得SQL执行时间点的执行计划?KingbaseES 提供了 a ...

随机推荐

  1. Maven-打包jar指定main函数所在类的一个例子

    问题描述:maven打包jar时,由于带main方法的类没有被加入manifest中,导致执行java -jar mvn-jar-1.0-SNAPSHOT.jar时,会提示没有主清单属性. 解决办法: ...

  2. MySQL数据检索时,sql查询的结果如何加上序号

    1.sql语法 @i:类型java定义的变量 @i:=0:这里类似给i初始化值为0 @i:=@i+1 :每次从0开始递增+1 SELECT (@i:=@i+1) as id,TDLINE FROM Y ...

  3. CentOS7下bash升级

    [1.查看系统版本][root@web ~]# uname -aLinux web 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 ...

  4. 实时数据引擎系列(五): 关于 SQL Server 与 SQL Server CDC

      摘要:在企业客户里, SQL Server 在传统的制造业依然散发着持久的生命力,SQL Server 的 CDC 复杂度相比 Oracle 较低, 因此标准的官方派做法就是直接使用这个 CDC ...

  5. 模电Multisim仿真Rb变化对Q点和电压放大倍数的影响

    一.目的 研究Rb变化对Q点和Au的影响. 二.方法描述 仿真电路如下所示.晶体管采用FMMT5179其参数BF=133,RB=5Ω. (1)分別测量Rb=3MΩ和3.2MΩ时得UCEQ和Au.由于信 ...

  6. 基于MATLAB静态目标分割的药板胶囊检测

    一.目标 1 将药板从黑色背景中分离(药板部分显示为白色,背景显示为黑色): 2 根据分割结果将药板旋转至水平: 3 提取药板中的药丸的位置信息: 二.方法描述 处理图像如下: (1)首先将图像转为灰 ...

  7. .NET ORM框架HiSql实战-第三章-使用自定义编号生成【申请编号】

    一.引言 上一篇.NET ORM框架HiSql实战-第二章-使用Hisql实现菜单管理(增删改查) 中菜单编号采用的是雪花ID,生成的编号无法自定义.比如本系统的一个申请业务,需要按前缀+日期+流水号 ...

  8. 各大厂的语音识别Speech To Text API使用体验

    最近发现有声读物能极大促进我的睡眠,但每个前面都有一段开场语,想把它剪掉,但是有多个开场语,所以就要用到语音识别判断一下再剪. 前两年在本地搭建过识别的环境,奈何识别准确率不行,只能找找API了,后面 ...

  9. idea 内置tomcat jersey 跨服务器 上传文件报400错误

    报错内容 com.sun.jersey.api.client.UniformInterfaceException: PUT http://.jpg returned a response status ...

  10. Java的基础语法01

    一. 注释,标识符,关键字 书写注释是一种习惯的养成,当我们一段代码完成后,长时间没有回顾,便会产生遗忘,所以注释是给我们写代码的人看的.1.注释 //单行注释 /*多行注释*/ /**文档注释也叫文 ...