pub fn ln<'a, V, E>(
expr: E,
) -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Double, E::Nullable, E::Aggregate>Expand description
LN - returns the natural logarithm of a number.
Returns a dialect-aware double type, preserves nullability.
ยงExample
use drizzle_core::expr::ln;
// SELECT LN(users.value)
let natural_log = ln(users.value);