降序索引應用在Top N問題上的應用
SQL> create table test_desc (id number not null,name varchar2(16)) tablespace users;
Table created.
SQL> create index test_id_desc_idx on test_desc(id desc) tablespace idx;
Index created.
Oracle預設情況下是升序索引,這裡定義了降序索引。
[@more@]我們看一下select會怎麼樣
SQL> select * from test_desc where id<10;
ID NAME
---------- ----------------
9 d
8 d
7 d
6 d
5 d
4 d
3 d
2 d
1 d
下面我們求id小於100的前5條記錄
SQL> l
1 select * from
2* (select id,name,rownum rnk from test_desc where id<101) where rnk<6
SQL> /
ID NAME RNK
---------- ---------------- ----------
100 d 1
99 d 2
98 d 3
97 d 4
96 d 5
Execution Plan
----------------------------------------------------------
Plan hash value: 328368902
--------------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 100 | 3600 | 2 (0)| 00:00:01 |
|* 1 | VIEW | | 100 | 3600 | 2 (0)| 00:00:01 |
| 2 | COUNT | | | | | |
| 3 | TABLE ACCESS BY INDEX ROWID| TEST_DESC | 100 | 2300 | 2 (0)| 00:00:01 |
|* 4 | INDEX RANGE SCAN | TEST_ID_DESC_IDX | 1 | | 2 (0)| 00:00:01 |
--------------------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
1 - filter("RNK"<6)
4 - access(SYS_OP_DESCEND("ID")>HEXTORAW('3DFDFDFF') )
filter(SYS_OP_UNDESCEND(SYS_OP_DESCEND("ID"))<101)
Note
-----
- dynamic sampling used for this statement
Statistics
----------------------------------------------------------
0 recursive calls
0 db block gets
5 consistent gets
0 physical reads
0 redo size
592 bytes sent via SQL*Net to client
385 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
5 rows processed
可以看到執行計劃避免了不必要的排序
當我們查詢salary小於5000的前10人時可以應用降序索引解決問題.
為emp(salary)建立降序索引
select * from (
select xxx,rownum rnk from emp where salary<5000)
where rnk<11;
即可.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/76065/viewspace-831997/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 不能建立降序索引的問題的解決索引
- 應用與tomcat上問題Tomcat
- 應用SqlitePCL應該注意的問題SQLite
- 關於HDFS應知應會的N個問題 | 技術點
- java軟引用在佇列的應用Java佇列
- JdonFramework應用問題?????Framework
- ESP32彩屏應用在淨飲機上
- vue單頁面應用在iOS版微信下自定義分享的問題VueiOS
- VR應用在直播領域上的實踐與探索VR
- 關於萬網上不能應用onethink問題
- phpstrom應用問題PHP
- Struts Tiles應用問題
- eclipse應用問題Eclipse
- 一個jboss的應用問題
- RB的應用問題總結
- SqlServer索引的原理與應用SQLServer索引
- oracle的逆序鍵索引應用!Oracle索引
- 機器學習應用在幾種形態下落地的問題和參考架構機器學習架構
- 應用在Linux上的指紋識別系統(轉)Linux
- 反思一個問題(在應用系統上修改表)
- vantUI應用(Tabbar標籤頁)返回上一頁的失效問題UItabBar
- RenderTexture用在RawImage上時要注意的顏色混合問題
- 一個模式應用問題模式
- 應用跨平臺問題?
- SAP Fiori應用的搜尋問題
- web應用中的路徑問題Web
- 在jboss上部署應用的問題。
- WEB應用訪問緩慢的問題定位Web
- win10應用商店安裝應用在哪兒啟動_Win10應用商店應用開機啟動的方法Win10
- Avalonia應用在基於Linux的國產操作deepin上執行Linux
- 索引的應用規律總結索引
- 索引在ORACLE中的應用分析索引Oracle
- SAP Fiori應用索引大全索引
- Angular應用解決跨域訪問的問題Angular跨域
- websphere 應用超時問題的解決Web
- struts的多模組應用問題--html:formHTMLORM
- apache web 中的CGI應用問題(轉)ApacheWeb
- 快應用稽核常見問題