Function length
Source pub fn length<'a, V, E>(expr: E) -> SQLExpr<'a, V, BigInt, E::Nullable, Scalar>
Expand description
LENGTH - returns the length of a string.
Returns BigInt type, preserves nullability.
§Example
ⓘuse drizzle_core::expr::length;
let name_len = length(users.name);