pub fn localtime<'a, V>() -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::Time, NonNull, Scalar>Expand description
LOCALTIME - returns the current time without time zone (PostgreSQL).
ยงExample
use drizzle_core::expr::localtime;
// SELECT LOCALTIME
let now_time = localtime::<PostgresValue>();