pub fn is_false<'a, V, E>(
expr: E,
) -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Bool, NonNull, E::Aggregate>Expand description
IS FALSE - tests if a boolean expression is false.
Unlike = FALSE, this handles NULL correctly:
FALSE IS FALSE→ trueTRUE IS FALSE→ falseNULL IS FALSE→ false (not NULL!)