【Oracle】where條件執行順序(上篇的問題延伸)

PiscesCanon發表於2017-12-12
上篇問題連結:http://blog.itpub.net/30174570/viewspace-2148592/
問題:

  1. SYS@proc> create table t as select * from v$parameter;

  2. Table created.

  3. SYS@proc> select value from t where name='db_block_size' and to_number(value)=8192;

  4. VALUE
  5. --------------------------------------------------------------------------------
  6. 8192

  7. SYS@proc> select value from v$parameter where name='db_block_size' and to_number(value)=8192;
  8. select value from v$parameter where name='db_block_size' and to_number(value)=8192
  9.                                                              *
  10. ERROR at line 1:
  11. ORA-01722: invalid number
為什麼語句“select value from t where name='db_block_size' and to_number(value)=8192;”執行成功,換成v$parameter卻報錯。

實驗研究過程:
  1. SYS@proc> set autotrace on
  2. SYS@proc> analyze table t compute statistics;

  3. Table analyzed.

  4. SYS@proc> select value from t where name='db_block_size' and to_number(value)=8192;

  5. VALUE
  6. --------------------------------------------------------------------------------
  7. 8192


  8. Execution Plan
  9. ----------------------------------------------------------
  10. Plan hash value: 1601196873

  11. --------------------------------------------------------------------------
  12. | Id | Operation         | Name  | Rows | Bytes | Cost (%CPU)| Time     |
  13. --------------------------------------------------------------------------
  14. |  0 | SELECT STATEMENT  |       |    1 |    26 |       4 (0)| 00:00:01 |
  15. |* 1 |  TABLE ACCESS FULL| T     |    1 |    26 |       4 (0)| 00:00:01 |
  16. --------------------------------------------------------------------------

  17. Predicate Information (identified by operation id):
  18. ---------------------------------------------------

  19.    1 - filter("NAME"='db_block_size' AND TO_NUMBER("VALUE")=8192)


  20. Statistics
  21. ----------------------------------------------------------
  22.      1 recursive calls
  23.      0 db block gets
  24.      9 consistent gets
  25.      0 physical reads
  26.      0 redo size
  27.    525 bytes sent via SQL*Net to client
  28.    523 bytes received via SQL*Net from client
  29.      2 SQL*Net roundtrips to/from client
  30.      0 sorts (memory)
  31.      0 sorts (disk)
  32.      1 rows processed
一開始看到這個執行計劃很懵逼,完全搞不懂為什麼能夠執行成功,做10046,10053,改寫sql加hint還是搞不懂。
最後猜想Oracle在filter("NAME"='db_block_size' AND TO_NUMBER("VALUE")=8192)這個步驟,是先對資料做name='db_block_size'的過濾,在做to_number('value')=8192的過濾。
若是能將謂詞資訊改變成filter(TO_NUMBER("VALUE") AND "NAME"='db_block_size'=8192)並且執行報錯,那麼猜想就是正確的。
嘗試將sql語句的and條件調換位置"select value from t where to_number(value)=8192 and name='db_block_size';",不過還是和原來一樣,這裡省略步驟。

這裡構造其他測試表:
  1. SYS@proc> create table a(id1 int,id2 int,id3 int,id4 int);

  2. Table created.

  3. SYS@proc> insert into a values(1,1,1,0);

  4. 1 row created.

  5. SYS@proc> commit;

  6. Commit complete.

  7. SYS@proc> select * from a;

  8.        ID1        ID2        ID3        ID4
  9. ---------- ---------- ---------- ----------
  10.          1          1          1          0
這裡執行以下4條sql語句:
①Select 'ok' From aaa where id1/id2=1 and id3/id4=2;
②Select 'ok' From aaa where id1/id2=2 and id3/id4=2;
③Select 'ok' From aaa where id3/id4=2 and id1/id2=1;
④Select 'ok' From aaa where id3/id4=2 and id1/id2=2;
其中①和③,②和④只是where後條件位置互換而已。
檢視執行結果:
  1. SYS@proc> Select 'ok' From aaa where id1/id2=1 and id3/id4=2;
  2. Select 'ok' From aaa where id1/id2=1 and id3/id4=2
  3.                                             *
  4. ERROR at line 1:
  5. ORA-01476: divisor is equal to zero


  6. SYS@proc> Select 'ok' From aaa where id1/id2=2 and id3/id4=2;

  7. no rows selected

  8. SYS@proc> Select 'ok' From aaa where id3/id4=2 and id1/id2=1;
  9. Select 'ok' From aaa where id3/id4=2 and id1/id2=1
  10.                               *
  11. ERROR at line 1:
  12. ORA-01476: divisor is equal to zero


  13. SYS@proc> Select 'ok' From aaa where id3/id4=2 and id1/id2=2;
  14. Select 'ok' From aaa where id3/id4=2 and id1/id2=2
  15.                               *
  16. ERROR at line 1:
  17. ORA-01476: divisor is equal to zero
②和④只是位置不同,但是一個卻正常執行,一個卻報錯了。
這裡檢視兩條sql的執行計劃:
  1. SYS@proc> explain plan for Select 'ok' From aaa where id1/id2=2 and id3/id4=2;

  2. Explained.

  3. SYS@proc> select * from table(dbms_xplan.display());

  4. PLAN_TABLE_OUTPUT
  5. --------------------------------------------------------------------------------
  6. Plan hash value: 864433273

  7. -----------------------------------------------------------------------
  8. | Id | Operation         | Name | Rows | Bytes | Cost (%CPU)| Time     |
  9. ------------------------------------------------------------------------
  10. || SELECT STATEMENT  |      |    1 |    12 |     2   (0)| 00:00:01 |
  11. |* 1 |  TABLE ACCESS FULL| AAA  |    1 |    12 |     2   (0)| 00:00:01 |
  12. -----------------------------------------------------------------------

  13. Predicate Information (identified by operation id):
  14. ---------------------------------------------------

  15. PLAN_TABLE_OUTPUT
  16. --------------------------------------------------------------------------------

  17.    1 - filter("ID1"/"ID2"=2 AND "ID3"/"ID4"=2)

  18. 13 rows selected.

  19. SYS@proc> explain plan for Select 'ok' From aaa where id3/id4=2 and id1/id2=2;

  20. Explained.

  21. SYS@proc> select * from table(dbms_xplan.display());

  22. PLAN_TABLE_OUTPUT
  23. --------------------------------------------------------------------------------
  24. Plan hash value: 864433273

  25. ------------------------------------------------------------------------
  26. | Id | Operation         | Name | Rows | Bytes | Cost (%CPU)| Time     |
  27. ------------------------------------------------------------------------
  28. |  0 | SELECT STATEMENT  |      |    1 |    12 |     2   (0)| 00:00:01 |
  29. |* 1 |  TABLE ACCESS FULL|  AAA |    1 |    12 |     2   (0)| 00:00:01 |
  30. ------------------------------------------------------------------------

  31. Predicate Information (identified by operation id):
  32. ---------------------------------------------------

  33. PLAN_TABLE_OUTPUT
  34. --------------------------------------------------------------------------------

  35.    1 - filter("ID3"/"ID4"=2 AND "ID1"/"ID2"=2)

  36. 13 rows selected.
這裡對比謂詞資訊剛好是兩個位置不同,導致執行結果不一樣。
正好說明上邊的問題的猜想:
    最後猜想Oracle在filter("NAME"='db_block_size' AND TO_NUMBER("VALUE")=8192)這個步驟,是先對資料做name='db_block_size'的過濾,在做to_number('value')=8192的過濾。
    若是能將謂詞資訊改變成filter(TO_NUMBER("VALUE") AND "NAME"='db_block_size'=8192)並且執行報錯,那麼猜想就是正確的。

由此問題解決。

其他:
  1. SYS@proc> create table test (id int);

  2. Table created.

  3. SYS@proc> insert into test values(null);

  4. 1 row created.
  5. SYS@proc> commit;

  6. Commit complete.

  7. SYS@proc> select * from test;

  8.     ID
  9. ----------


  10. SYS@proc> set autotrace on
  11. SYS@proc> select value from t,test a where a.id||name='db_block_size' and to_number(a.id||t.value)=8192;

  12. VALUE
  13. --------------------------------------------------------------------------------
  14. 8192


  15. Execution Plan
  16. ----------------------------------------------------------
  17. Plan hash value: 423998170

  18. ---------------------------------------------------------------------------
  19. | Id | Operation          | Name  | Rows | Bytes | Cost (%CPU)| Time     |
  20. ---------------------------------------------------------------------------
  21. |  0 | SELECT STATEMENT   |       |    1 |    39 |    6    (0)| 00:00:01 |
  22. |  1 |  NESTED LOOPS      |       |    1 |    39 |    6    (0)| 00:00:01 |
  23. |  2 |   TABLE ACCESS FULL| TEST  |    1 |    13 |    2    (0)| 00:00:01 |
  24. |* 3 |   TABLE ACCESS FULL| T     |    1 |    26 |    4    (0)| 00:00:01 |
  25. ---------------------------------------------------------------------------

  26. Predicate Information (identified by operation id):
  27. ---------------------------------------------------

  28.    3 - filter(TO_CHAR("A"."ID")||"NAME"='db_block_size' AND
  29.      TO_NUMBER(TO_CHAR("A"."ID")||"T"."VALUE")=8192)

  30. Note
  31. -----
  32.    - dynamic sampling used for this statement (level=2)


  33. Statistics
  34. ----------------------------------------------------------
  35.      32 recursive calls
  36.      0 db block gets
  37.      28 consistent gets
  38.      0 physical reads
  39.      0 redo size
  40.     525 bytes sent via SQL*Net to client
  41.     523 bytes received via SQL*Net from client
  42.      2 SQL*Net roundtrips to/from client
  43.      4 sorts (memory)
  44.      0 sorts (disk)
  45.      1 rows processed

  46. SYS@proc> set autotrace off
  47. SYS@proc> select value from t,test a where to_number(a.id||t.value)=8192 and a.id||name='db_block_size';
  48. select value from t,test a where to_number(a.id||t.value)=8192 and a.id||name='db_block_size'
  49.                                                 *
  50. ERROR at line 1:
  51. ORA-01722: invalid number


  52. SYS@proc> explain plan for select value from t,test a where to_number(a.id||t.value)=8192 and a.id||name='db_block_size';

  53. Explained.

  54. SYS@proc> select * from table(dbms_xplan.display());

  55. PLAN_TABLE_OUTPUT
  56. --------------------------------------------------------------------------------
  57. Plan hash value: 423998170

  58. ---------------------------------------------------------------------------
  59. | Id | Operation          | Name  | Rows | Bytes | Cost (%CPU)| Time     |
  60. ---------------------------------------------------------------------------
  61. |  0 | SELECT STATEMENT   |       |    1 |    39 |    6    (0)| 00:00:01 |
  62. |  1 |  NESTED LOOP     |       |    1 |    39 |    6    (0)| 00:00:01 |
  63. |  2 |   TABLE ACCESS FULL| TES  |    1 |    13 |    2    (0)| 00:00:01 |
  64. |* 3 |   TABLE ACCESS FULL| T     |    1 |    26 |    4    (0)| 00:00:01 |
  65. ---------------------------------------------------------------------------


  66. PLAN_TABLE_OUTPUT
  67. --------------------------------------------------------------------------------
  68. Predicate Information (identified by operation id):
  69. ---------------------------------------------------

  70.    3 - filter(TO_NUMBER(TO_CHAR("A"."ID")||"T"."VALUE")=8192 AND
  71.      TO_CHAR("A"."ID")||"NAME"='db_block_size')

  72. 16 rows selected.

所以where後邊條件的執行順序,實際上和執行計劃謂詞資訊的順序有關,和where的位置無關。
網上有些在10g做實驗得出結論是從右到左,在11g裡邊,按照相同步驟執行並得不出相同結論。

問題延伸:
filter("NAME"='db_block_size' AND TO_NUMBER("VALUE")=8192),這裡是一次性掃描出全部資料在進行過濾,還是一行一行獲取在判斷的。
延伸連結:http://blog.itpub.net/30174570/viewspace-2149212/

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

相關文章