|
The syntax of the LIKE operator in most databases(haven't checked all) is like:
expression [ NOT ] LIKE pattern [ ESCAPE escape_character ]
where pattern is a 'simple' string. Therefore quantors and also subqueries can't be used with the LIKE operator.
|