Function current_date
Source pub fn current_date<'a, V>() -> SQLExpr<'a, V, Date, NonNull, Scalar>
Expand description
CURRENT_DATE - returns the current date.
Works on both SQLite and PostgreSQL.
§Example
ⓘuse drizzle_core::expr::current_date;
let today = current_date::<SQLiteValue>();