Function ceil
Source pub fn ceil<'a, V, E>(expr: E) -> SQLExpr<'a, V, Double, E::Nullable, Scalar>
Expand description
CEIL / CEILING - rounds a number up to the nearest integer.
Returns Double type, preserves nullability.
§Example
ⓘuse drizzle_core::expr::ceil;
let ceiling = ceil(users.price);