| title | Wildcard search (%) | |||||
|---|---|---|---|---|---|---|
| ms.custom | seo-lt-2019 | |||||
| ms.date | 12/06/2016 | |||||
| ms.prod | sql | |||||
| ms.prod_service | database-engine, sql-database | |||||
| ms.reviewer | ||||||
| ms.technology | t-sql | |||||
| ms.topic | language-reference | |||||
| f1_keywords |
|
|||||
| dev_langs |
|
|||||
| helpviewer_keywords |
|
|||||
| ms.assetid | d4cbc1a9-37e1-4101-97fb-e6ac30c1223e | |||||
| author | rothja | |||||
| ms.author | jroth |
[!INCLUDEtsql-appliesto-ss2008-asdb-xxxx-xxx-md]
Matches any string of zero or more characters. This wildcard character can be used as either a prefix or a suffix.
The following example returns all the first names of people in the Person table of AdventureWorks2012 that start with Dan.
-- Uses AdventureWorks
SELECT FirstName, LastName
FROM Person.Person
WHERE FirstName LIKE 'Dan%';
GO
LIKE (Transact-SQL)
Operators (Transact-SQL)
Expressions (Transact-SQL)
[ ] (Wildcard - Character(s) to Match)
[^] (Wildcard - Character(s) Not to Match)
_ (Wildcard - Match One Character)