<i id='oaHNX'><tr id='oaHNX'><dt id='oaHNX'><q id='oaHNX'><span id='oaHNX'><b id='oaHNX'><form id='oaHNX'><ins id='oaHNX'></ins><ul id='oaHNX'></ul><sub id='oaHNX'></sub></form><legend id='oaHNX'></legend><bdo id='oaHNX'><pre id='oaHNX'><center id='oaHNX'></center></pre></bdo></b><th id='oaHNX'></th></span></q></dt></tr></i><div id='oaHNX'><tfoot id='oaHNX'></tfoot><dl id='oaHNX'><fieldset id='oaHNX'></fieldset></dl></div>

      1. <small id='oaHNX'></small><noframes id='oaHNX'>

        • <bdo id='oaHNX'></bdo><ul id='oaHNX'></ul>
        <legend id='oaHNX'><style id='oaHNX'><dir id='oaHNX'><q id='oaHNX'></q></dir></style></legend>
        <tfoot id='oaHNX'></tfoot>
      2. SQL Server IN 与 EXISTS 性能

        SQL Server IN vs. EXISTS Performance(SQL Server IN 与 EXISTS 性能)
          <tbody id='taoI0'></tbody>

          <bdo id='taoI0'></bdo><ul id='taoI0'></ul>

            • <tfoot id='taoI0'></tfoot>

                <i id='taoI0'><tr id='taoI0'><dt id='taoI0'><q id='taoI0'><span id='taoI0'><b id='taoI0'><form id='taoI0'><ins id='taoI0'></ins><ul id='taoI0'></ul><sub id='taoI0'></sub></form><legend id='taoI0'></legend><bdo id='taoI0'><pre id='taoI0'><center id='taoI0'></center></pre></bdo></b><th id='taoI0'></th></span></q></dt></tr></i><div id='taoI0'><tfoot id='taoI0'></tfoot><dl id='taoI0'><fieldset id='taoI0'></fieldset></dl></div>
                  <legend id='taoI0'><style id='taoI0'><dir id='taoI0'><q id='taoI0'></q></dir></style></legend>

                  <small id='taoI0'></small><noframes id='taoI0'>

                  本文介绍了SQL Server IN 与 EXISTS 性能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我很好奇以下哪个更有效?

                  I'm curious which of the following below would be more efficient?

                  我一直对使用 IN 持谨慎态度,因为我相信 SQL Server 会将结果集转换为一个大的 IF 语句.对于大型结果集,这可能会导致性能不佳.对于较小的结果集,我不确定两者是否更可取.对于大型结果集,EXISTS 不是更有效吗?

                  I've always been a bit cautious about using IN because I believe SQL Server turns the result set into a big IF statement. For a large result set, this could result in poor performance. For small result sets, I'm not sure either is preferable. For large result sets, wouldn't EXISTS be more efficient?

                  WHERE EXISTS (SELECT * FROM Base WHERE bx.BoxID = Base.BoxID AND [Rank] = 2)
                  

                  对比

                  WHERE bx.BoxID IN (SELECT BoxID FROM Base WHERE [Rank = 2])
                  

                  推荐答案

                  EXISTS 会更快,因为一旦引擎发现命中,它会在条件被证明为真时停止查找.

                  EXISTS will be faster because once the engine has found a hit, it will quit looking as the condition has proved true.

                  EXISTS>

                  使用IN,它将在进一步处理之前收集子查询的所有结果.

                  With IN, it will collect all the results from the sub-query before further processing.

                  这篇关于SQL Server IN 与 EXISTS 性能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  SQL query to group by day(按天分组的 SQL 查询)
                  Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                  sql group by versus distinct(sql group by 与不同)
                  How to return a incremental group number per group in SQL(如何在SQL中返回每个组的增量组号)
                  Count number of records returned by group by(统计分组返回的记录数)
                  SQL GROUP BY CASE statement with aggregate function(带聚合函数的 SQL GROUP BY CASE 语句)
                      <tbody id='iJ2sp'></tbody>
                      <tfoot id='iJ2sp'></tfoot>
                    • <small id='iJ2sp'></small><noframes id='iJ2sp'>

                      <legend id='iJ2sp'><style id='iJ2sp'><dir id='iJ2sp'><q id='iJ2sp'></q></dir></style></legend>

                        <bdo id='iJ2sp'></bdo><ul id='iJ2sp'></ul>

                        1. <i id='iJ2sp'><tr id='iJ2sp'><dt id='iJ2sp'><q id='iJ2sp'><span id='iJ2sp'><b id='iJ2sp'><form id='iJ2sp'><ins id='iJ2sp'></ins><ul id='iJ2sp'></ul><sub id='iJ2sp'></sub></form><legend id='iJ2sp'></legend><bdo id='iJ2sp'><pre id='iJ2sp'><center id='iJ2sp'></center></pre></bdo></b><th id='iJ2sp'></th></span></q></dt></tr></i><div id='iJ2sp'><tfoot id='iJ2sp'></tfoot><dl id='iJ2sp'><fieldset id='iJ2sp'></fieldset></dl></div>