bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/SQL/SQL Tutorial
SQL•SQL Tutorial

SQL LIKE Operator

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind SQL LIKE Operator?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ * FROM Customers
3Order

Put the learning moves in the order that makes the concept easiest to apply.

There are two wildcards often used in conjunction with the LIKE operator:
The LIKE operator is used in a WHERE clause to search for a specified pattern within a column's text data.
The SQL LIKE Operator

The SQL LIKE Operator

The LIKE operator is used in a WHERE clause to search for a specified pattern within a column's text data.

There are two wildcards often used in conjunction with the LIKE operator:

  • A percent sign % - represents zero, one, or multiple characters
  • A underscore sign _ - represents a single character

The following SQL selects all customers that starts with the letter "a":

Example

SELECT * FROM Customers

WHERE CustomerName LIKE 'a%';

Syntax

SELECT column1, column2, ... FROM table_name WHERE columnN LIKE pattern ;

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

The % Wildcard

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

Example

SELECT * FROM Customers

WHERE city LIKE '%on%';

The _ Wildcard

The _ wildcard represents one single character.

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

Example

SELECT * FROM Customers

WHERE city LIKE 'l_nd__';

Starts With

To return records that starts with a specific letter or phrase, add the % at the end of the letter or phrase.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE 'La%';

Tip

You can also combine any number of conditions using AND or OR operators.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE 'a%' OR CustomerName LIKE 'b%';

Ends With

To return records that ends with a specific letter or phrase, add the % at the beginning of the letter or phrase.

Example

SELECT * FROM Customers

WHERE CustomerName LIKE '%a';

Tip

You can also combine "starts with" and "ends with":

Example

SELECT * FROM Customers

 WHERE CustomerName LIKE 'b%s';

Contains

To return records that contains a specific letter or phrase, add the % both before and after the letter or phrase.

Example

SELECT * FROM Customers

 WHERE CustomerName LIKE '%or%';

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 Wildcards

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';

Previous

SQL AVG() Function

Next

SQL Wildcards