Function date
Source pub fn date<'a, V, E>(expr: E) -> SQLExpr<'a, V, Date, E::Nullable, Scalar>
Expand description
DATE - extracts the date part from a temporal expression (SQLite).
Preserves the nullability of the input expression.
§Example
ⓘuse drizzle_core::expr::date;
let created_date = date(users.created_at);