TO_DAY_OF_MONTH
Converts a date or date with time (timestamp/datetime) to a UInt8 number containing the number of the day of the month (1-31).
Syntax
TO_DAY_OF_MONTH(<expr>)
Arguments
Arguments | Description |
---|---|
<expr> | date/timestamp |
Return Type
TINYINT
Examples
SELECT to_day_of_month(to_date(18869));
+---------------------------------+
| to_day_of_month(to_date(18869)) |
+---------------------------------+
| 30 |
+---------------------------------+
SELECT to_day_of_month(to_timestamp(1630812366));
+-------------------------------------------+
| to_day_of_month(to_timestamp(1630812366)) |
+-------------------------------------------+
| 5 |
+-------------------------------------------+