Function not_ilike
Source pub fn not_ilike<'a, L, R>(left: L, pattern: R) -> PostgresSQL<'a>
Expand description
Case-insensitive NOT LIKE pattern matching (PostgreSQL-specific)
§Example
ⓘuse drizzle::postgres::expressions::not_ilike;
let query = not_ilike(user.name, "%admin%");