dbbase.column_types.WriteOnlyColumn.notlike

WriteOnlyColumn.notlike(other, escape=None)

implement the NOT LIKE operator.

This is equivalent to using negation with ColumnOperators.like(), i.e. ~x.like(y).

See also

ColumnOperators.like()