Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

LIKE

LIKE

The LIKE command, utilized within a WHERE clause, searches for a specified pattern in a column.

It supports two wildcards:

  • %: Represents zero, one, or multiple characters.
  • _: Represents a single character (MS Access uses a question mark (?) instead).

The provided SQL retrieves all customers whose CustomerName starts with “a”:

Example

SELECT * FROM Customers
WHERE CustomerName LIKE ‘a%’

The following SQL retrieves all customers whose CustomerName ends with “a”:

Example

SELECT * FROM Customers
WHERE CustomerName LIKE ‘%a’;  

The following SQL retrieves all customers whose CustomerName contains “or” in any position:

Example

SELECT * FROM Customers
WHERE CustomerName LIKE ‘%or%’;

The following SQL statement selects all customers with a CustomerName that starts with “a” and are at least 3 characters in length:

Example

SELECT * FROM Customers
WHERE CustomerName LIKE ‘a__%’