Joe Celko's SQL for Smarties: Advanced SQL Programming, Third Edition

The like predicate is a string pattern-matching test with the syntax:
::= [NOT] LIKE [ESCAPE ] ::= ::= ::=
The expression M NOT LIKE P is equivalent to NOT (M LIKE P), which follows the usual syntax pattern in SQL. Two wildcards are allowed in the
Any other character in the
The
The '_' character tests much faster than...