LIKE

Description

The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.

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

  • The percent sign (%) represents zero, one, or multiple characters
  • The underscore sign (_) represents one, single character

Syntax

  1. > SELECT column1, column2, ...
  2. FROM table_name
  3. WHERE columnN LIKE pattern;

Examples

  1. -- The following SQL statement selects all customers with a CustomerName starting with "a"
  2. mysql> SELECT * FROM Customers
  3. WHERE CustomerName LIKE 'a%';
  4. -- The following SQL statement selects all customers with a CustomerName ending with "a"
  5. mysql> SELECT * FROM Customers
  6. WHERE CustomerName LIKE '%a';
  7. -- The following SQL statement selects all customers with a CustomerName that have "or" in any position
  8. mysql> SELECT * FROM Customers
  9. WHERE CustomerName LIKE '%or%';
  10. -- The following SQL statement selects all customers with a CustomerName that have "r" in the second position
  11. mysql> SELECT * FROM Customers
  12. WHERE CustomerName LIKE '_r%';
  13. -- The following SQL statement selects all customers with a CustomerName that starts with "a" and are at least 3 characters in length
  14. mysql> SELECT * FROM Customers
  15. WHERE CustomerName LIKE 'a__%';
  16. mysql> SELECT * FROM Customers
  17. WHERE ContactName LIKE 'a%o'; -- The following SQL statement selects all customers with a ContactName that starts with "a" and ends with "o"
  18. -- The following SQL statement selects all customers with a CustomerName that does NOT start with "a"
  19. mysql> SELECT * FROM Customers
  20. WHERE CustomerName NOT LIKE 'a%';