pub fn not_ilike<'a, L, R>(left: L, pattern: R) -> SQL<'a, PostgresValue<'a>>Expand description
Case-insensitive NOT LIKE pattern matching (PostgreSQL-specific)
ยงExample
use drizzle_postgres::expr::not_ilike;
let query = not_ilike(user.name, "%admin%");
// Generates: "name" NOT ILIKE '%admin%'