通配符用于替换字符串中的任何其他字符。
通配符与 SQL LIKE 运算符一起使用。在 WHERE 子句中使用LIKE运算符来搜索列中的指定模式。
有两个通配符与 LIKE 运算符一起使用:
% - 百分号表示零个,一个或多个字符
_ - 下划线表示单个字符
注意:
MS Access 使用星号(*)通配符而不是百分比符号(%)通配符。
MS Access 使用问号(?)而不是下划线(_)。
在MS Access和SQL Server中,你也可以使用:
[ charlist ] - 定义要匹配的字符的集合和范围
[^ charlist ]或[!charlist ] - 定义不匹配字符的集合和范围
通配符也可以组合使用!
下面是一些使用'%'和'_'通配符显示不同LIKE运算符的例子:
LIKE运算符 描述
WHERE CustomerName LIKE 'a%' 查找以“a”开头的任何值
WHERE CustomerName LIKE '%a' 查找以"a"结尾的任何值
WHERE CustomerName LIKE '%or%' 在任何位置查找任何具有“or”的值
WHERE CustomerName LIKE '_r%' 在第二个位置查找任何具有“r”的值
WHERE CustomerName LIKE 'a_%_%' 查找以“a”开头并且长度至少为3个字符的值
WHERE ContactName LIKE 'a%o' 查找以“a”开始并以“o”结尾的任何值
演示数据库
在本教程中,我们将使用著名的 Northwind 示例数据库。
以下是 "Customers" 表中的数据:
CustomerID CustomerName ContactName Address City PostalCode Country
1
Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4
Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK
5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S-958 22 Sweden |