dayofmonth function

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Returns the day of month of the date or timestamp. This function is a synonym for extract(DAY FROM expr).

Syntax

dayofmonth(expr)

Arguments

  • expr: A DATE or TIMESTAMP expression.

Returns

An INTEGER.

Examples

> SELECT dayofmonth('2009-07-30');
 30