隨筆 - 3  文章 - 0  trackbacks - 0
          <2025年7月>
          293012345
          6789101112
          13141516171819
          20212223242526
          272829303112
          3456789

          常用鏈接

          留言簿(1)

          隨筆檔案

          文章檔案

          搜索

          •  

          積分與排名

          • 積分 - 1611
          • 排名 - 4224

          最新評論

          閱讀排行榜

          評論排行榜

          Because SQL is a declarative language, you can write the same query in many forms, each getting the same result but with vastly different execution plans and performance.

          In this example, we select all books that do not have any sales.  Note that this is a non-correlated sub-query, but it could be re-written in several ways.

          select
             book_key
          from
             book
          where
             book_key NOT IN (select book_key from sales);
           

          There are serious problems with subqueries that may return NULL values. It is a good idea to discourage the use of the NOT IN clause (which invokes a sub-query) and to prefer NOT EXISTS (which invokes a correlated sub-query), since the query returns no rows if any rows returned by the sub-query contain null values.

          select
             book_key
          from
             book
          where
             NOT EXISTS (select book_key from sales);

          Subqueries can often be re-written to use a standard outer join, resulting in faster performance.  As we may know, an outer join uses the plus sign (+) operator to tell the database to return all non-matching rows with NULL values.  Hence we combine the outer join with a NULL test in the WHERE clause to reproduce the result set without using a sub-query.

          select
             b.book_key
          from
             book  b,
             sales s
          where
             b.book_key = s.book_key(+)
          and
             s.book_key IS NULL;

          This execution plan will also be faster by eliminating the sub-query.

          posted on 2007-08-14 15:06 y 閱讀(210) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發(fā)表評論。


          網站導航:
           
          主站蜘蛛池模板: 屯门区| 屏东市| 东阿县| 龙里县| 金阳县| 抚远县| 五指山市| 新蔡县| 成都市| 屏边| 奉贤区| 上饶县| 淅川县| 哈密市| 双江| 三原县| 桑日县| 册亨县| 府谷县| 罗田县| 朝阳市| 隆林| 瓮安县| 龙海市| 双辽市| 荥经县| 岑巩县| 杨浦区| 佛坪县| 舞阳县| 子洲县| 襄城县| 绥江县| 武邑县| 渑池县| 潜江市| 宜章县| 阿克陶县| 巴彦淖尔市| 新兴县| 许昌市|