TO_START_OF_FIFTEEN_MINUTES (Lakehouse v1)
Rounds down the date with time (timestamp/datetime) to the start of the fifteen-minute interval.
Analyze Syntax
Section titled “Analyze Syntax”func.to_start_of_fifteen_minutes(<expr>)Analyze Examples
Section titled “Analyze Examples”func.to_start_of_fifteen_minutes('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────────────────┐│ func.to_start_of_fifteen_minutes('2023-11-12 09:38:18.165575') ││ Timestamp │├────────────────────────────────────────────────────────────────┤│ 2023-11-12 09:30:00 │└────────────────────────────────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”TO_START_OF_FIFTEEN_MINUTES(<expr>)Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<expr> | timestamp |
Return Type
Section titled “Return Type”TIMESTAMP, returns date in “YYYY-MM-DD hh:mm:ss.ffffff” format.
SQL Examples
Section titled “SQL Examples”SELECT to_start_of_fifteen_minutes('2023-11-12 09:38:18.165575')
┌───────────────────────────────────────────────────────────┐│ to_start_of_fifteen_minutes('2023-11-12 09:38:18.165575') ││ Timestamp │├───────────────────────────────────────────────────────────┤│ 2023-11-12 09:30:00 │└───────────────────────────────────────────────────────────┘