Skip to main content

not

Function not 

Source
pub fn not(expr: Expr) -> Expr
Expand description

Negate an expression with NOT.

ยงExamples

use sqlglot_rust::builder::{not, column};

let negated = not(column("active", None));