pub fn now<'a, V>() -> SQLExpr<'a, V, Timestamp, NonNull, Scalar>where V: SQLParam + 'a,
NOW - returns the current timestamp with time zone (PostgreSQL).
use drizzle_core::expr::now; // SELECT NOW() let current = now::<PostgresValue>();