Function julianday
Source pub fn julianday<'a, V, E>(
expr: E,
) -> SQLExpr<'a, V, Double, E::Nullable, Scalar>
Expand description
JULIANDAY - converts a temporal expression to Julian day number (SQLite).
Returns Double type, preserves nullability.
§Example
ⓘuse drizzle_core::expr::julianday;
let julian = julianday(users.created_at);