pub fn current_time<'a, V>() -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Time, NonNull, Scalar>where
V: SQLParam + 'a,Expand description
CURRENT_TIME - returns the current time.
Works on both SQLite and PostgreSQL.
ยงExample
use drizzle_core::expr::current_time;
// SELECT CURRENT_TIME
let now_time = current_time::<SQLiteValue>();