Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Matches any single character in a string comparison operation that involves pattern matching, such as LIKE and PATINDEX.
Examples
The following example uses the _ operator to find all the people in the Person table, who have a three-letter first name that ends in an.
USE AdventureWorks2012;
GO
SELECT FirstName, LastName
FROM Person.Person
WHERE FirstName LIKE '_an'
ORDER BY FirstName;
See Also
Reference
Percent character (Wildcard - Character(s) to Match) (Transact-SQL)