now

Function now 

Source
pub fn now<'a, V>() -> SQLExpr<'a, V, Timestamp, NonNull, Scalar>
where V: SQLParam + 'a,
Expand description

NOW - returns the current timestamp with time zone (PostgreSQL).

§Example

use drizzle_core::expr::now;

// SELECT NOW()
let current = now::<PostgresValue>();