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