Function log10
Source pub fn log10<'a, V, E>(expr: E) -> SQLExpr<'a, V, Double, E::Nullable, Scalar>
Expand description
LOG10 - returns the base-10 logarithm of a number.
Returns Double type, preserves nullability.
§Example
ⓘuse drizzle_core::expr::log10;
let log_base_10 = log10(users.value);