group by 不一定排序

YallonKing發表於2012-11-27
如題,以前,每次人家問我sql執行的時候在什麼情況下會出現排序。我的答案中都會含有group by 子句,後來我發現我錯了。
下邊是一個用到group by子句但沒有排序的例子。
SQL> set autot on
SQL> select * from (select min(rownum) from dual where rownum < 10 group by rownum);

MIN(ROWNUM)
-----------
          1


Execution Plan
----------------------------------------------------------
Plan hash value: 3333817076

------------------------------------------------------------------------------
| Id  | Operation             | Name | Rows  | Bytes | Cost (%CPU)| Time     |
------------------------------------------------------------------------------
|   0 | SELECT STATEMENT      |      |     1 |    13 |     2   (0)| 00:00:01 |
|   1 |  VIEW                 |      |     1 |    13 |     2   (0)| 00:00:01 |
|   2 |   SORT GROUP BY NOSORT|      |     1 |       |     2   (0)| 00:00:01 |
|*  3 |    COUNT STOPKEY      |      |       |       |            |          |
|   4 |     FAST DUAL         |      |     1 |       |     2   (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   3 - filter(ROWNUM<10)


Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
          0  consistent gets
          0  physical reads
          0  redo size
        529  bytes sent via SQL*Net to client
        523  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

在執行計劃中的 SORT GROUP BY NOSORT 可以看出沒有排序。

其實,在這裡oracle在執行到group by子句時,發現該處已經是排好序的,故其不在進行sort操作。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26143577/viewspace-750073/,如需轉載,請註明出處,否則將追究法律責任。

相關文章