Home >Database >Mysql Tutorial >在SQL Server中用好模糊查询指令LIKE(2)_MySQL

在SQL Server中用好模糊查询指令LIKE(2)_MySQL

WBOY
WBOYOriginal
2016-06-01 13:51:121257browse

bitsCN.com

    模式中,当转义符置于通配符之前时,该通配符就解释为普通字符。例如,要搜索在任意位置包含字符串 5% 的字符串,请使用:

WHERE ColumnA LIKE '%5/%%' ESCAPE '/'

在上述 LIKE 子句中,前导和结尾百分号 (%) 解释为通配符,而斜杠 (/) 之后的百分号解释为字符%。

在方括号 ([ ]) 中只包含通配符本身。要搜索破折号 (-) 而不是用它指定搜索范围,请将破折号指定为方括号内的第一个字符:

WHERE ColumnA LIKE '9[-]5'

下表显示了括在方括号内的通配符的用法。

符号 含义

LIKE '5[%]' 5%

LIKE '5%' 5 后跟 0 个或更多字符的字符串

LIKE '[_]n' _n

LIKE '_n' an, in, on (and so on)

LIKE '[a-cdf]' a, b, c, d, or f

LIKE '[-acdf]' -, a, c, d, or f

LIKE '[ [ ]' [

LIKE ']' ]

 

如果使用 LIKE 进行字符串比较,模式字符串中的包括起始空格和/或尾随空格在内的所有字符都有意义。如果查询比较要求返回包含"abc "(abc 后有一个空格)的所有行,则不会返回列值为"abc"(abc 后没有空格)行。但是反过来,情况并非如此。可以忽略模式所要匹配的表达式中的末尾空格。如果查询比较要求返回包含"abc"(abc 后没有空格)的所有行,则将返回以"abc"开始且具有零个或多个末尾空格的所有行。

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn