精品一区二区中文在线,无遮挡h肉动漫在线观看,国产99视频精品免视看9,成全免费高清大全

where條件順序不同,性能是否也不同的問題 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【salifelink.com - 電腦資料】

    where條件順序不同,性能是否也不同的問題

    昨天在書上看到SQL語句優化時,where條件順序不同,性能不同,這個建議在Oracle11G版本還合適嗎???方式1優于方式2????????

    方式1:

    select a.*

    from students s,

    class c

    where

    s.id = c.id

    s.id = 'xxxxxxxx'

    方式2:

    select a.*

    from students s,

    class c

    where

    s.id = 'xxxxxxxx'

    s.id = c.id

    10g中測試結果證明是一樣的,

where條件順序不同,性能是否也不同的問題

    Microsoft Windows [版本 5.2.3790]

    (C) 版權所有 1985-2003 Microsoft Corp.

    C:\Documents and Settings\Administrator>sqlplus / as sysdba

    SQL*Plus: Release 10.2.0.1.0 - Production on 星期六 5月 11 17:48:55 2013

    Copyright (c) 1982, 2005, Oracle. All rights reserved.

    連接到:

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

    With the Partitioning, OLAP and Data Mining options

    SQL> alter system flush shared_pool;

    系統已更改。

    SQL> alter system flush buffer_cache;

    系統已更改。

    SQL> set autotrace on;

    SQL> select *

    2 from COUNTRIES c,

    3 REGIONS r

    4 where c.REGION_ID=r.REGION_ID and c.REGION_ID='4';

    REGIONS r

    *

    第 3 行出現錯誤:

    ORA-00942: 表或視圖不存在

    SQL> select *

    2 from hr.COUNTRIES c,

    3 hr. REGIONS r

    4 where c.REGION_ID=r.REGION_ID and c.REGION_ID='4';

    CO COUNTRY_NAME               REGION_ID REGION_ID

    -- ---------------------------------------- ---------- ----------

    REGION_NAME

    -------------------------

    EG Egypt                      4     4

    Middle East and Africa

    IL Israel                      4     4

    Middle East and Africa

    KW Kuwait                      4     4

    Middle East and Africa

    CO COUNTRY_NAME               REGION_ID REGION_ID

    -- ---------------------------------------- ---------- ----------

    REGION_NAME

    -------------------------

    NG Nigeria                     4     4

    Middle East and Africa

    ZM Zambia                      4     4

    Middle East and Africa

    ZW Zimbabwe                     4     4

    Middle East and Africa

    已選擇6行。

    執行計劃

    ----------------------------------------------------------

    Plan hash value: 4030513296

    --------------------------------------------------------------------------------

    ----------------

    | Id | Operation          | Name      | Rows | Bytes | Cost (%

    CPU)| Time  |

    --------------------------------------------------------------------------------

    ----------------

    | 0 | SELECT STATEMENT      |        |  6 | 168 |  2

    (0)| 00:00:01 |

    | 1 | NESTED LOOPS        |        |  6 | 168 |  2

    (0)| 00:00:01 |

    | 2 | TABLE ACCESS BY INDEX ROWID| REGIONS    |  1 |  14 |  1

    (0)| 00:00:01 |

    |* 3 |  INDEX UNIQUE SCAN    | REG_ID_PK   |  1 |   |  0

    (0)| 00:00:01 |

    |* 4 | INDEX FULL SCAN      | COUNTRY_C_ID_PK |  6 |  84 |  1

    (0)| 00:00:01 |

    --------------------------------------------------------------------------------

    ----------------

    Predicate Information (identified by operation id):

    ---------------------------------------------------

    3 - access("R"."REGION_ID"=4)

    4 - filter("C"."REGION_ID"=4)

    統計信息

    ----------------------------------------------------------

    628 recursive calls

    0 db block gets

    127 consistent gets

    20 physical reads

    0 redo size

    825 bytes sent via SQL*Net to client

    385 bytes received via SQL*Net from client

    2 SQL*Net roundtrips to/from client

    13 sorts (memory)

    0 sorts (disk)

    6 rows processed

    SQL>

    #############

    SQL> alter system flush shared_pool;

    系統已更改,

電腦資料

where條件順序不同,性能是否也不同的問題》(http://salifelink.com)。

    SQL> alter system flush buffer_cache;

    系統已更改。

    select *

    from hr.COUNTRIES c,

    hr. REGIONS r

    where

    c.REGION_ID='4'

    6 and c.REGION_ID=r.REGION_ID;

    CO COUNTRY_NAME               REGION_ID REGION_ID

    -- ---------------------------------------- ---------- ----------

    REGION_NAME

    -------------------------

    EG Egypt                      4     4

    Middle East and Africa

    IL Israel                      4     4

    Middle East and Africa

    KW Kuwait                      4     4

    Middle East and Africa

    CO COUNTRY_NAME               REGION_ID REGION_ID

    -- ---------------------------------------- ---------- ----------

    REGION_NAME

    -------------------------

    NG Nigeria                     4     4

    Middle East and Africa

    ZM Zambia                      4     4

    Middle East and Africa

    ZW Zimbabwe                     4     4

    Middle East and Africa

    已選擇6行。

    執行計劃

    ----------------------------------------------------------

    Plan hash value: 4030513296

    --------------------------------------------------------------------------------

    ----------------

    | Id | Operation          | Name      | Rows | Bytes | Cost (%

    CPU)| Time  |

    --------------------------------------------------------------------------------

    ----------------

    | 0 | SELECT STATEMENT      |        |  6 | 168 |  2

    (0)| 00:00:01 |

    | 1 | NESTED LOOPS        |        |  6 | 168 |  2

    (0)| 00:00:01 |

    | 2 | TABLE ACCESS BY INDEX ROWID| REGIONS    |  1 |  14 |  1

    (0)| 00:00:01 |

    |* 3 |  INDEX UNIQUE SCAN    | REG_ID_PK   |  1 |   |  0

    (0)| 00:00:01 |

    |* 4 | INDEX FULL SCAN      | COUNTRY_C_ID_PK |  6 |  84 |  1

    (0)| 00:00:01 |

    --------------------------------------------------------------------------------

    ----------------

    Predicate Information (identified by operation id):

    ---------------------------------------------------

    3 - access("R"."REGION_ID"=4)

    4 - filter("C"."REGION_ID"=4)

    統計信息

    ----------------------------------------------------------

    656 recursive calls

    0 db block gets

    131 consistent gets

    22 physical reads

    0 redo size

    825 bytes sent via SQL*Net to client

    385 bytes received via SQL*Net from client

    2 SQL*Net roundtrips to/from client

    13 sorts (memory)

    0 sorts (disk)

    6 rows processed

    SQL>

最新文章
主站蜘蛛池模板: 亚洲无线一二三四区手机| 亚洲天堂男人影院| 最新欧美精品一区二区三区| 国语自产偷拍精品视频偷拍| 国产一区二区三区精品视频| 国产一区二区三区不卡在线观看| 国产免费无码一区二区三区| 欧美大肥婆bbbww| 精品亚洲成A人在线观看| 宅宅少妇无码| free性欧美媓妇喷水| 樱花草在线社区www韩国| 日本阿v片在线播放免费| 国产在线视频一区二区三区| 国产97碰免费视频| 国产免费破外女真实出血视频| 黑人异族巨大巨大巨粗| 337p人体粉嫩胞高清视频| 国产一区二区三区不卡在线观看| 国产伦久视频免费观看视频| 国产午夜无码精品免费看| 久热国产VS视频在线观看| 人善交vide欧美| 国产精品你懂的在线播放| 亚洲欧美一区二区三区| 国产伦久视频免费观看视频| 亚洲 欧美 激情 小说 另类| 国产精品成年片在线观看| 最新国产在线拍揄自揄视频| 国产在线视频一区二区三区| 精品久久久久久久免费人妻| 免费人成视频在线播放| 亚洲人成在线观看| 性少妇freesexvideos高清| 国产精品亚洲一区二区在线观看| 欧美老妇人xxxx| 欧美 国产 亚洲 卡通 综合| 中文字幕一区二区精品区| 国产AV无码久久精品| 亚洲不卡一卡2卡三卡4卡5卡| 99re8这里有精品热视频免费|