Function current_time
Source pub fn current_time<'a, V>() -> SQLExpr<'a, V, Time, NonNull, Scalar>
Expand description
CURRENT_TIME - returns the current time.
Works on both SQLite and PostgreSQL.
§Example
ⓘuse drizzle_core::expr::current_time;
let now_time = current_time::<SQLiteValue>();