Function trim
Source pub fn trim<'a, V, E>(expr: E) -> SQLExpr<'a, V, Text, E::Nullable, Scalar>
Expand description
TRIM - removes leading and trailing whitespace.
Preserves the nullability of the input expression.
§Example
ⓘuse drizzle_core::expr::trim;
let trimmed = trim(users.name);