Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the day of month of the date or timestamp. This function is a synonym for extract(DAY FROM expr)
.
Syntax
day(expr)
Arguments
expr
: ADATE
orTIMESTAMP
expression.
Returns
An INTEGER
.
Examples
> SELECT day('2009-07-30');
30