like method

SQL like(
  1. ColumnOr<V> value
)

Value of this expression matches the value pattern.

Implementation

SQL like(ColumnOr<V> value) =>
    SQL([this, const RawSQL('LIKE'), operand(value)]);