在SQL Server的SQL优化过程中,如果遇到WHERE条件中包含LIKE '%search_string%'是一件非常头痛的事情。这种情况下,一般要修改业务逻辑或改写SQL才能解决SQL执行计划走索引扫描或全表扫描的问题。最近在优化SQL语句的时候,遇到了一个很有意思的问题。某些使用LIKE '%' + @search_string + '%'(或者 LIKE @search_string)这样写法的SQL语句的执行计划居然走索引查找(Index Seek)。下面这篇文章来分析一下这个奇怪的现象。

首先,我们来看看WHERE查询条件中使用LIKE的几种情况,这些是我们对LIKE的一些常规认识:

1: LIKE 'condition%'

执行计划会走索引查找(Index Seek or Clustered Index Seek)。

2:  LIKE '%condition'

执行计划会走索引扫描(Index Scan or Clustered Index Scan)或全表扫描(Table Scan)

3:  LIKE '%condition%'

执行计划会走索引扫描(Index Scan or Clustered Index Scan)或全表扫描(Table Scan)

4: LIKE 'condition1%condition%';

执行计划会走索引查找(Index Seek)

下面我们以AdventureWorks2014示例数据库为测试环境(测试环境为SQL Server 2014 SP2),测试上面四种情况,如下所示:

其实复杂的情况下,LIKE 'search_string%'也有走索引扫描(Index Scan)的情况,上面情况并不是唯一、绝对的。如下所示

在表Person.Person的 rowguid字段上创建有唯一索引AK_Person_rowguid

那么我们来看看上面所说的这个特殊案例(这里使用一个现成的案例,懒得构造案例了),如何让LIKE %search_string%走索引查找(Index Seek),这个技巧就是使用变量,如下SQL对比所示:

如下所示,表[dbo].[GEN_CUSTOMER]在字段CUSTOMER_CD有聚集索引。

可以看到CUSTOMER_CD LIKE '%' + @CUSTOMER_CD + '%'这样的SQL写法(或者CUSTOMER_CD LIKE @CUSTOMER_CD也可以), 执行计划就走聚集索引查找(Clustered Index Seek)了, 而条件中直接使用CUSTOMER_CD LIKE '%00630%' 反而走聚集索引扫描(Clustered Index Scan),另外可以看到实际执行的Cost开销比为4% VS 96% ,初一看,还真的以为第一个执行计划比第二个执行的代价要小很多。但是从IO开销,以及CPU time、elapsed time对比来看,两者几乎没有什么差异。在这个案例中,并不是走索引查找(Index Seek)就真的开销代价小很多。

考虑到这里数据量较小,我使用网上的一个脚本,在AdventureWorks2014数据库构造了一个10000000的大表,然后顺便做了一些测试对比

CREATE TABLE dbo.TestLIKESearches

(

     ID1         INT

    ,ID2         INT

    ,AString     VARCHAR(100)

    ,Value       INT

    ,PRIMARY KEY (ID1, ID2)

);

 

WITH Tally (n) AS

(

SELECT TOP 10000000 ROW_NUMBER() OVER (ORDER BY (SELECT NULL))

FROM sys.all_columns a CROSS JOIN sys.all_columns b

)

INSERT INTO dbo.TestLIKESearches

    (ID1, ID2, AString, Value)

SELECT 1+n/500, n%500

    ,CASE WHEN n%500 > 299 THEN

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1) +

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1) +

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1) +

            RIGHT(1000+n%1000, 3) +

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1) +

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1) +

            SUBSTRING('abcdefghijklmnopqrstuvwxyz', 1+ABS(CHECKSUM(NEWID()))%26, 1)

          END

    ,1+ABS(CHECKSUM(NEWID()))%100

FROM Tally;

 

 

CREATE INDEX IX_TestLIKESearches_N1 ON dbo.TestLIKESearches(AString);

如下测试所示,在一个大表上面,LIKE @search_string这种SQL写法,IO开销确实要小一些,CPU Time也要小一些。个人多次测试都是这种结果。也就是说对于数据量较大的表,这种SQL写法性能确实要好一些。

现在回到最开始那个SQL语句,个人对执行计划有些疑惑,查看执行计划,你会看到优化器对CUSTOMER_CD LIKE '%' + @CUSTOMER_CD + '%' 进行了转换。如下截图或通过执行计划的XML,你会发现上面转换为使用三个内部函数LikeRangeStart, LikeRangeEnd,  LikeRangeInfo.

<OutputList>

                    <ColumnReference Column="Expr1007" />

                    <ColumnReference Column="Expr1008" />

                    <ColumnReference Column="Expr1009" />

                  </OutputList>

                  <ComputeScalar>

                    <DefinedValues>

                      <DefinedValue>

                        <ColumnReference Column="Expr1007" />

                        <ScalarOperator ScalarString="LikeRangeStart((N'%'+[@CUSTOMER_CD])+N'%')">

                          <Identifier>

                            <ColumnReference Column="ConstExpr1004">

                              <ScalarOperator>

                                <Intrinsic FunctionName="LikeRangeStart">

                                  <ScalarOperator>

                                    <Arithmetic Operation="ADD">

                                      <ScalarOperator>

                                        <Arithmetic Operation="ADD">

                                          <ScalarOperator>

                                            <Const ConstValue="N'%'" />

                                          </ScalarOperator>

                                          <ScalarOperator>

                                            <Identifier>

                                              <ColumnReference Column="@CUSTOMER_CD" />

                                            </Identifier>

                                          </ScalarOperator>

                                        </Arithmetic>

                                      </ScalarOperator>

                                      <ScalarOperator>

                                        <Const ConstValue="N'%'" />

                                      </ScalarOperator>

                                    </Arithmetic>

                                  </ScalarOperator>

                                  <ScalarOperator>

                                    <Const ConstValue="" />

                                  </ScalarOperator>

                                </Intrinsic>

                              </ScalarOperator>

                            </ColumnReference>

                          </Identifier>

                        </ScalarOperator>

                      </DefinedValue>

                      <DefinedValue>

                        <ColumnReference Column="Expr1008" />

                        <ScalarOperator ScalarString="LikeRangeEnd((N'%'+[@CUSTOMER_CD])+N'%')">

                          <Identifier>

                            <ColumnReference Column="ConstExpr1005">

                              <ScalarOperator>

                                <Intrinsic FunctionName="LikeRangeEnd">

                                  <ScalarOperator>

                                    <Arithmetic Operation="ADD">

                                      <ScalarOperator>

                                        <Arithmetic Operation="ADD">

                                          <ScalarOperator>

                                            <Const ConstValue="N'%'" />

                                          </ScalarOperator>

                                          <ScalarOperator>

                                            <Identifier>

                                              <ColumnReference Column="@CUSTOMER_CD" />

                                            </Identifier>

                                          </ScalarOperator>

                                        </Arithmetic>

                                      </ScalarOperator>

                                      <ScalarOperator>

                                        <Const ConstValue="N'%'" />

                                      </ScalarOperator>

                                    </Arithmetic>

                                  </ScalarOperator>

                                  <ScalarOperator>

                                    <Const ConstValue="" />

                                  </ScalarOperator>

                                </Intrinsic>

                              </ScalarOperator>

                            </ColumnReference>

                          </Identifier>

                        </ScalarOperator>

                      </DefinedValue>

                      <DefinedValue>

                        <ColumnReference Column="Expr1009" />

                        <ScalarOperator ScalarString="LikeRangeInfo((N'%'+[@CUSTOMER_CD])+N'%')">

                          <Identifier>

                            <ColumnReference Column="ConstExpr1006">

                              <ScalarOperator>

                                <Intrinsic FunctionName="LikeRangeInfo">

                                  <ScalarOperator>

                                    <Arithmetic Operation="ADD">

                                      <ScalarOperator>

                                        <Arithmetic Operation="ADD">

                                          <ScalarOperator>

                                            <Const ConstValue="N'%'" />

                                          </ScalarOperator>

                                          <ScalarOperator>

                                            <Identifier>

                                              <ColumnReference Column="@CUSTOMER_CD" />

                                            </Identifier>

                                          </ScalarOperator>

                                        </Arithmetic>

                                      </ScalarOperator>

                                      <ScalarOperator>

                                        <Const ConstValue="N'%'" />

                                      </ScalarOperator>

                                    </Arithmetic>

                                  </ScalarOperator>

                                  <ScalarOperator>

                                    <Const ConstValue="" />

                                  </ScalarOperator>

                                </Intrinsic>

                              </ScalarOperator>

                            </ColumnReference>

                          </Identifier>

                        </ScalarOperator>

                      </DefinedValue>

                    </DefinedValues>

另外,你会发现Nested Loops & Compute Scalar 等步骤的Cost都为0.后面在“Dynamic Seeks and Hidden Implicit Conversions”这篇博客里面看到了一个新名词Dynamic Seeks。文字提到因为成本估算为0,所以,你看到的执行计划的Cost又是“不准确”的,具体描述如下:

The plan now contains an extra Constant Scan,  a Compute Scalar and a Nested Loops Join.  These operators are interesting because they have zero cost estimates: no CPU, no I/O, nothing.  That’s because they are purely architectural: a workaround for the fact that SQL Server cannot currently perform a dynamic seek within the Index Seek operator itself.  To avoid affecting plan choices, this extra machinery is costed at zero.

The Constant Scan produces a single in-memory row with no columns.  The Compute Scalar defines expressions to describe the covering seek range (using the runtime value of the @Like variable).  Finally, the Nested Loops Join drives the seek using the computed range information as correlated values.

The upper tooltip shows that the Compute Scalar uses three internal functions, LikeRangeStart, LikeRangeEnd, and LikeRangeInfo.  The first two functions describe the range as an open interval.  The third function returns a set of flags encoded in an integer, that are used internally to define certain seek properties for the Storage Engine.  The lower tooltip shows the seek on the open interval described by the result of LikeRangeStart and LikeRangeEnd, and the application of the residual predicate ‘LIKE @Like’.

不管你返回的记录有多少,执行计划Nested Loops & Compute Scalar 等步骤的Cost都为0,如下测试所示,返回1000条记录,它的成本估算依然为0 ,显然这样是不够精确的。深层次的原因就不太清楚了。执行计划Cost不可靠的案例很多。

SET STATISTICS IO ON;

 

SET STATISTICS TIME ON;

 

DECLARE @CUSTOMER_CD NVARCHAR(10);

 

SET @CUSTOMER_CD=N'%44%'

 

 

 

SELECT * FROM  [dbo].[GEN_CUSTOMER] WHERE CUSTOMER_CD LIKE @CUSTOMER_CD

另外,其实还一点没有搞清楚的时候在什么条件下出现Index Seek的情况。有些情况下,使用变量的方式,依然是索引扫描

不过我在测试过程,发现有一个原因是书签查找(Bookmark Lookup:键查找(Key Lookup)或RID查找 (RID Lookup))开销过大会导致索引扫描。如下测试对比所示:

CREATE NONCLUSTERED INDEX [IX_xriteWhite_N1] ON.[dbo].[xriteWhite] ([Item_NO]) INCLUDE ([Iden],[WI_CE],[CIE],[Operate_Time])

参考资料:

http://sqlblog.com/blogs/paul_white/archive/2012/01/18/dynamic-seeks-and-hidden-implicit-conversions.aspx

https://blogs.msdn.microsoft.com/varund/2009/11/30/index-usage-by-like-operator-query-tuning/

https://sqlperformance.com/2017/02/sql-indexes/seek-leading-wildcard-sql-server

https://stackoverflow.com/questions/1388059/sql-server-index-columns-used-in-like

SQL Server中LIKE %search_string% 走索引查找(Index Seek)浅析的更多相关文章

  1. SQL Server中的聚集索引(clustered index) 和 非聚集索引 (non-clustered index)

    本文转载自  http://blog.csdn.net/ak913/article/details/8026743 面试时经常问到的问题: 1. 什么是聚合索引(clustered index) / ...

  2. SQL SERVER中什么情况会导致索引查找变成索引扫描

    SQL Server 中什么情况会导致其执行计划从索引查找(Index Seek)变成索引扫描(Index Scan)呢? 下面从几个方面结合上下文具体场景做了下测试.总结.归纳. 1:隐式转换会导致 ...

  3. Sql Server中的表访问方式Table Scan, Index Scan, Index Seek

    1.oracle中的表访问方式 在oracle中有表访问方式的说法,访问表中的数据主要通过三种方式进行访问: 全表扫描(full table scan),直接访问数据页,查找满足条件的数据 通过row ...

  4. 转:Sql Server中的表访问方式Table Scan, Index Scan, Index Seek

    0.参考文献 Table Scan, Index Scan, Index Seek SQL SERVER – Index Seek vs. Index Scan – Diffefence and Us ...

  5. sql server中index的REBUILD和REORGANIZE的区别及工作方式

    sql server中index的REBUILD和REORGANIZE 转自:https://www.cnblogs.com/flysun0311/archive/2013/12/05/3459451 ...

  6. c#Winform程序调用app.config文件配置数据库连接字符串 SQL Server文章目录 浅谈SQL Server中统计对于查询的影响 有关索引的DMV SQL Server中的执行引擎入门 【译】表变量和临时表的比较 对于表列数据类型选择的一点思考 SQL Server复制入门(一)----复制简介 操作系统中的进程与线程

    c#Winform程序调用app.config文件配置数据库连接字符串 你新建winform项目的时候,会有一个app.config的配置文件,写在里面的<connectionStrings n ...

  7. 第十七周翻译-SQL Server中事务日志管理的阶梯,级别5:以完全恢复模式管理日志

    SQL Server中事务日志管理的阶梯,级别5:以完全恢复模式管理日志 作者:Tony Davis,2012/01/27 翻译:赖慧芳 译文: 该系列   本文是Stairway系列的一部分:SQL ...

  8. SQL Server中SCAN 和SEEK的区别

    SQL Server中SCAN 和SEEK的区别 SQL SERVER使用扫描(scan)和查找(seek)这两种算法从数据表和索引中读取数据.这两种算法构成了查询的基础,几乎无处不在.Scan会扫描 ...

  9. SQL Server中的执行引擎入门

      简介 当查询优化器(Query Optimizer)将T-SQL语句解析后并从执行计划中选择最低消耗的执行计划后,具体的执行就会交由执行引擎(Execution Engine)来进行执行.本文旨在 ...

随机推荐

  1. [Swift]LeetCode804. 唯一摩尔斯密码词 | Unique Morse Code Words

    International Morse Code defines a standard encoding where each letter is mapped to a series of dots ...

  2. [Swift]LeetCode954. 二倍数对数组 | Array of Doubled Pairs

    Given an array of integers A with even length, return true if and only if it is possible to reorder ...

  3. scala的break和continue

    scala 是没有 continue 的,但是包含 break,可以用 break 构造出 continue 的效果 这里用到了库: import scala.util.control.Breaks. ...

  4. AI 这么优秀,连我鉴黄师的饭碗都抢了

    色情行业,或许是对信息渠道最敏锐.利用各类信息渠道进行传播最“充分”的“行业”.这些年,社交 App.直播.短视频等新的互联网应用方式,都难逃色情内容的“骚扰”.哪里人多,色情内容就能立刻扑过去,在海 ...

  5. 准备PPT过程中的一些文档记录

    http://jm.taobao.org/2016/12/23/20161223/ https://www.csdn.net/article/2015-02-10/2823900 https://da ...

  6. MetaEditor中MQL使用方法

    MT4程序--帮助--MQL5文档,转到网页,切换到中文,点击旁边搜索图标. MetaEditor编辑器,点击相应关键字,按F1键,即可启动MT4对应的MQL4的对应关键字用法帮助.但是英文. 时间序 ...

  7. 说一说MVC的Authentication过滤(四)

    前沿: 一般情况下,在我们做访问权限管理的时候,会把用户的正确登录后的基本信息保存在Session中,以后用户每次请求页面或接口数据的时候,拿到 Session中存储的用户基本信息,查看比较他有没有登 ...

  8. Android--拦截系统BroadcastReceiver

    前言 上一篇博客,讲了BroadcastReceiver的一些基础内容,如何注册以及发送一个广播,那是基础,不清楚的可以先看看:Android--BroadcastReceiver.但是在实际开发当中 ...

  9. 机器学习之决策树一-ID3原理与代码实现

    决策树之系列一ID3原理与代码实现 本文系作者原创,转载请注明出处:https://www.cnblogs.com/further-further-further/p/9429257.html 应用实 ...

  10. 深入解读阿里云数据库POLARDB核心功能物理复制技术

    日志是数据库的重要组成部份,按顺序以增量的方式记录了数据库上所有的操作,日志模块的设计对于数据库的可靠性.稳定性和性能都非常重要. 可靠性方面,在有一个数据文件的基础全量备份后,对运行中的数据库来说, ...