pub fn now<'a, V>() -> SQLExpr<'a, V, <V::DialectMarker as DialectTypes>::TimestampTz, NonNull, Scalar>Expand description
NOW - returns the current timestamp with time zone (PostgreSQL).
ยงExample
use drizzle_core::expr::now;
// SELECT NOW()
let current = now::<PostgresValue>();