SQL WHERE LIKE

·

·

In this article you’ll learn to use the LIKE operator in your SQL. In most situations you’ll find yourself using LIKE within the WHERE clause to filter data using patterns such as all values beginning with “S.” Using this phrase allows us perform partial matches of data values and obtain answers to questions which can’t be done with conventional comparisons.

The lesson’s objectives are to:

  1. learn about the LIKE match condition
  2. understand wild cards

Important! Please follow along and do the examples in your database.  If you haven’t already done so, sign up for my Guide to Getting Started with SQL Server.  You get instructions on how to install the free tools and sample database.

SQL WHERE LIKE Pattern Matching

The LIKE match condition is used to match values fitting a specified pattern.  Unlike the equals (=) comparison operator, which requires an exact match, with LIKE we can specify a pattern to partially match fields.

An example where clause using the LIKE condition to find all Employees whose first names start with “R” is:

SELECT BusinessEntityID,
    FirstName,
    LastName,
    MiddleName
FROM Person.Person 
WHERE FirstName like 'R%'

The big thing to see here is that we use LIKE to do the matching.

SQL WHERE LIKE

You may be wondering what is so special about that search as you could just as easily as written

WHERE FirstName >= 'R' AND FirstName < 'S'

to achieve the same result, but what about finding all names ending in the letter s?  There is no easy way to use the traditional comparison operators to do this, but it’s easily handled with LIKE:

SELECT BusinessEntityID,
    FirstName,
    LastName,
    MiddleName
FROM Person.Person 
WHERE FirstName like '%s'

The ‘R%’ and ‘%s’ are patterns. Patterns are created using placeholder characters.  There are several special characters used.

Commonly used SQL LIKE Wildcards

When working with LIKE you find yourself using wildcards to create the pattern matching. The most common wildcard to use are those that match any characters or exactly one character.

WildcardDescriptionExample
%Any string of zero or more charactersWHERE FirstName LIKE ‘G’ finds all names beginning with G.
_ (underscore)A single characterWHERE FirstName LIKE ‘T_M’ finds all three letter names beginning with T and ending in M, such as Tim and Tom.
[]Any single character within a range or set such as [e-i] or [efghi]WHERE FirstName LIKE ‘T[aeiouy]%’ finds all names starting with T whose second letter is a vowel, such as Tammy.
[^]Any single character not within a range or set, such as [^1-4] or [^1234]WHERE FirstName LIKE ‘T[^aeiouy]%’ finds all names starting with T whose second letter is not a vowel, such as Thomas.

Note:  There are a couple of more wildcards you can use to specify ranges, but for now, we are going to focus on the most popular ones.

I’m getting a head of my self here, but these wildcard are trippy. So, before we get too much farther, lets show that list example’s results to visually see how it works!

SQL Where Like example with ranges.

Notice that the [^aeiouy] is restricting FirstName. No First Names contain vowels in the second position.

SQL Like % and _ Wilds Card Examples

Let look at the % wildcard.  The pattern ‘%and%’ matches to ‘Wand‘, ‘and‘, or ‘Standard.’

To find all state abbreviations starting with the letter N, we could use the pattern ‘N%’ as this would match all values who first character is “N” and then any characters afterwards.

Yet, since state abbreviations are two characters ‘N_’ is more accurate, as this states to first match ‘N’ and then one and only one character thereafter. We can also match an anti-pattern using NOT.  If you’re looking for all names that do not end in S, the clause to use is

WHERE FirstName NOT LIKE '%s'

This would match ‘Baker’, ‘Michigan’, or ‘Wolverine,’ but not ‘Sales’ or ‘Kites’

As with other clauses, LIKE comparisons can be combined with other comparisons using AND and OR.

So, to find all employees in the AdventureWorks2012 database who are managers and females, we can use the following query:

SELECT NationalIDNumber,
       JobTitle,
       BirthDate,
       MaritalStatus,
       Gender,
       HireDate
FROM   HumanResources.Employee
WHERE  Employee.JobTitle LIKE '%manager%'
       AND Employee.Gender = 'F'

Here you can see the pattern matching in action.

SQL Like with wildcards

Also, check out how we combined the LIKE clause with an equality using the AND conditional operator.

Use SQL Like to Match a 1-800 Phone Number

So if you wanted to search for “1-800” phone numbers you could do a search like

WHERE PhoneNumber LIKE '%800%'

But that could match more than you bargained for as numbers such as 1-248-703-9800 could also match. So, you could refine the search to be more specific.

WHERE PhoneNumber LIKE '%(800)%'
      OR PhoneNumber LIKE '%800 %'

To match numbers such as (800) 555-1212 or 1-800 555-1212; however, this could backfire, as now numbers such as 1-800-555-1212 wouldn’t match, of course you could catch this with additional match terms.  The final result would be:

WHERE PhoneNumber LIKE '%(800)%'
      OR PhoneNumber LIKE '%800 %'
      OR PhoneNumber LIKE '%800-%'

Matching a Social Security Number

You may have a situation where you wish to retrieve all government ID’s matching the pattern of a US social security ID.  In order to do this match you could use the following

WHERE GovernmentID LIKE '___-__-____'

This would match numbers such as ‘123-12-1234′, but not ’12-12-12’ If you were looking to find all ID’s that didn’t match a social security number you could write your query as:

WHERE GovernmentID NOT LIKE '___-__-____'

SQL Like Exercises

It’s important to practice! Use the sample database to answer these questions.

  1. Find all Employees that have marketing in their title
  2. Select all persons whose street address is on a drive.  Hint – There are two forms of Drive:  Dr. and Drive.
  3. Select all products whose product number’s numeric portion starts with 7.  Hint – The product number’s format is AA-9999.

Answers are Here!

Learn More about SQL WHERE LIKE

Looking to learn more? Check out these articles to learn more about the LIKE clause and other interesting SQL topics:

2 responses to “SQL WHERE LIKE”
  1. Why in your example above:

    SELECT NationalIDNumber,
    JobTitle,
    BirthDate,
    MaritalStatus,
    Gender,
    HireDate
    FROM HumanResources.Employee
    WHERE Employee.JobTitle LIKE ‘%manager%’
    AND Employee.Gender = ‘F’

    Do you use Employee.JobTitle (rather than just JobTitle) and Employee.Gender (rather than just Gender)?

    1. That’s a good question Drew.

      To be honest, in this example, since there is only one table in the query, there is no need to put Employee in front of the column names.

      I suppose the reason I did was out of habit.

      Once you start using joins or subqueries, you have more than one table in the query, and if those tables have columns with the same names, it can get tricky. At that point, I usually always include the table name to be safe.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

More from the blog


MySQL PostgreSQL SQLite SqlServer