not_like

Function not_like 

Source
pub fn not_like<'a, V, L, R>(
    left: L,
    pattern: R,
) -> SQLExpr<'a, V, Bool, NonNull, Scalar>
where V: SQLParam + 'a, L: Expr<'a, V>, R: Expr<'a, V>, L::SQLType: Textual, R::SQLType: Textual,
Expand description

NOT LIKE pattern matching.

Requires both operands to be textual types (TEXT, VARCHAR).