current_date
function
Applies to: Databricks SQL
Databricks Runtime
Returns the current date at the start of query evaluation.
current_date()
This function takes no arguments.
A DATE.
The braces are optional.
> SELECT current_date();
2020-04-25
> SELECT current_date;
2020-04-25