7
The LIKE operator is used to check if field values match a specified pattern, and searches for less-than-exact but similar values.
13
SELECT 'ä' LIKE 'ae' COLLATE latin1_german2_ci;
21
SELECT 'ä' = 'ae' COLLATE latin1_german2_ci;
25
The LIKE operator supports the use of two wildcards. (Wildcards provide more flexibility by allowing any character or group of characters in a string to be acceptable as a match for another string):
27
* Percentage (%): Represents zero or more values.
28
* Underscore (_): Matches exactly one character value.
30
In accordance the SQL standard, LIKE performs matching on a per-character basis. It therefore provides results different from the = comparison operator.
32
The following SELECT statement includes a WHERE clause in order to search for job titles that start with "DIRECTOR", by using the percentage wildcard after the lookup value.
40
WHERE title LIKE 'DIRECTOR%'
41
ORDER BY field, title;
47
Returns values that match a regular expression pattern; they are commonly used for creating complex searches. Here is an example of using a REGEXP (Regular Expression) match:
51
SELECT title, category_name
53
WHERE title REGEXP '^AIRP[LO]'
56
Other REGEXP examples:
60
SELECT 'abcabc' REGEXP 'abc',
63
The search pattern may describe only a part of string. To match entire string, use ^ and $ in the search:
67
SELECT 'abc' REGEXP '^abc$', 'abcabc' REGEXP '^abc$';
69
SELECT 'cde' REGEXP '[a-c]+', 'efg' REGEXP '[a-c]+';
71
SELECT 'abcabc' REGEXP 'ABC', 'abcabc' REGEXP BINARY 'ABC';
77
The purpose of STRCMP is also to compare two strings. This function returns 0 if two strings are the same, -1 if the first argument is smaller than the second according to the current sort order, and 1 otherwise.