pub fn not(expr: Expr) -> Expr
Negate an expression with NOT.
use sqlglot_rust::builder::{not, column}; let negated = not(column("active", None));