Skip to content

Rounds down a date or date with time (timestamp/datetime) to the first day of the month. Returns the date.

func.to_start_of_month(<expr>)
func.to_start_of_month('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────────────────┐
│ func.to_start_of_month('2023-11-12 09:38:18.165575') │
│ Date │
├────────────────────────────────────────────────────────────────┤
2023-11-01
└────────────────────────────────────────────────────────────────┘
TO_START_OF_MONTH(<expr>)
ArgumentsDescription
<expr>date/timestamp

DATE, returns date in “YYYY-MM-DD” format.

SELECT
to_start_of_month('2023-11-12 09:38:18.165575')
┌─────────────────────────────────────────────────┐
│ to_start_of_month('2023-11-12 09:38:18.165575') │
Date
├─────────────────────────────────────────────────┤
2023-11-01
└─────────────────────────────────────────────────┘