Function sqrt
Source pub fn sqrt<'a, V, E>(expr: E) -> SQLExpr<'a, V, Double, E::Nullable, Scalar>
Expand description
SQRT - returns the square root of a number.
Returns Double type, preserves nullability.
§Example
ⓘuse drizzle_core::expr::sqrt;
let root = sqrt(users.area);