bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL Tutorial
SQL•SQL Tutorial

SQL Wildcards

SQL Wildcard Characters

A wildcard character is used to substitute one or more characters in a string.

Wildcard characters are used with the LIKE operator. The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE 'a%';

Wildcard Characters

SymbolDescription
%Represents zero or more characters
_Represents a single character
[]Represents any single character within the brackets *
^Represents any character not in the brackets *
-Represents any single character within the specified range *
{}Represents any escaped character **
  • Not supported in PostgreSQL and MySQL databases.

** Supported only in Oracle databases.

Demo Database

Below is a selection from the Customers table used in the examples:

CustomerIDCustomerNameContactNameAddressCityPostalCodeCountry
1Alfreds FutterkisteMaria AndersObere Str. 57Berlin12209Germany
2Ana Trujillo Emparedados y heladosAna TrujilloAvda. de la Constitución 2222México D.F.05021Mexico
3Antonio Moreno TaqueríaAntonio MorenoMataderos 2312México D.F.05023Mexico
4Around the HornThomas Hardy120 Hanover Sq.LondonWA1 1DPUK
5Berglunds snabbköpChristina BerglundBerguvsvägen 8LuleåS-958 22Sweden

Using the % Wildcard

The % wildcard represents any number of characters, even zero characters.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE '%es';

Example

SELECT * FROM Customers

WHERE CustomerName LIKE '%mer%';

Using the _ Wildcard

The _ wildcard represents a single character.

It can be any character or number, but each _ represents one, and only one, character.

City
City

Using the [] Wildcard

The [] wildcard returns a result if any of the characters inside gets a match.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE '[bsp]%';

Using the - Wildcard

The - wildcard allows you to specify a range of characters inside the [] wildcard.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE '[a-f]%';

Combine Wildcards

Any wildcard, like % and _ , can be used in combination with other wildcards.

Example

SELECT * FROM Customers

 WHERE CustomerName LIKE 'a__%';

Example

SELECT * FROM Customers

 WHERE CustomerName LIKE '_r%';

Without Wildcard

If no wildcard is specified, the phrase has to have an exact match to return a result.

Example

SELECT * FROM Customers

 WHERE Country
 LIKE 'Spain';

Microsoft Access Wildcards

The Microsoft Access Database has some other wildcards:

SymbolDescriptionExample
*Represents zero or more charactersbl* finds bl, black, blue, and blob
?Represents a single characterh?t finds hot, hat, and hit
[]Represents any single character within the bracketsh[oa]t finds hot and hat, but not hit
!Represents any character not in the bracketsh[!oa]t finds hit, but not hot and hat
-Represents any single character within the specified rangec[a-b]t finds cat and cbt
#Represents any single numeric character2#5 finds 205, 215, 225, 235, 245, 255, 265, 275, 285, and 295

Previous

SQL LIKE Operator

Next

SQL IN Operator