TO_MONDAY (Lakehouse v1)
Round down a date or date with time (timestamp/datetime) to the nearest Monday. Returns the date.
Analyze Syntax
Section titled “Analyze Syntax”func.to_monday(<expr>)Analyze Examples
Section titled “Analyze Examples”func.to_monday('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────┐│ func.to_monday('2023-11-12 09:38:18.165575') ││ Date │├────────────────────────────────────────────────────┤│ 2023-11-06 │└────────────────────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”TO_MONDAY(<expr>)Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<expr> | date/timestamp |
Return Type
Section titled “Return Type”DATE, returns date in “YYYY-MM-DD” format.
SQL Examples
Section titled “SQL Examples”SELECT to_monday('2023-11-12 09:38:18.165575')
┌─────────────────────────────────────────┐│ to_monday('2023-11-12 09:38:18.165575') ││ Date │├─────────────────────────────────────────┤│ 2023-11-06 │└─────────────────────────────────────────┘