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