SQL Wildcards
Last updated
Last updated
A wildcard character is used to substitute any other character(s) in a string.
Wildcard characters are used with the SQL LIKE operator. The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.
There are two wildcards used in conjunction with the LIKE operator:
% - The percent sign represents zero, one, or multiple characters
_ - The underscore represents a single character
Here are some examples showing different LIKE operators with '%' and '_' wildcards:
Below is a selection from the "Customers" table :
The following SQL statement selects all customers with a City starting with "ber":
The following SQL statement selects all customers with a City containing the pattern "es":
The following SQL statement selects all customers with a City starting with any character, followed by "erlin":
The following SQL statement selects all customers with a City starting with "L", followed by any character, followed by "n", followed by any character, followed by "on":
The following SQL statement selects all customers with a City starting with "b", "s", or "p":
The following SQL statement selects all customers with a City starting with "a", "b", or "c":
The two following SQL statements select all customers with a City NOT starting with "b", "s", or "p":
Or: