Class SqlLikeOperator


public class SqlLikeOperator extends SqlSpecialOperator
An operator describing the LIKE and SIMILAR operators.

Syntax of the two operators:

  • src-value [NOT] LIKE pattern-value [ESCAPE escape-value]
  • src-value [NOT] SIMILAR pattern-value [ESCAPE escape-value]

NOTE If the NOT clause is present the parser will generate a equivalent to NOT (src LIKE pattern ...)