TO_START_OF_TEN_MINUTES
Rounds down a date with time (timestamp/datetime) to the start of the ten-minute interval.
Analyze Syntax
func.to_start_of_ten_minutes(<expr>)
Analyze Examples
func.to_start_of_ten_minutes('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────────────────┐
│ func.to_start_of_ten_minutes('2023-11-12 09:38:18.165575') │
│ Timestamp │
├────────────────────────────────────────────────────────────────┤
│ 2023-11-12 09:30:00 │
└────────────────────────────────────────────────────────────────┘
SQL Syntax
TO_START_OF_TEN_MINUTES(<expr>)
Arguments
Arguments | Description |
---|---|
<expr> | timestamp |
Return Type
TIMESTAMP
, returns date in “YYYY-MM-DD hh:mm:ss.ffffff” format.
SQL Examples
SELECT
to_start_of_ten_minutes('2023-11-12 09:38:18.165575')
┌───────────────────────────────────────────────────────┐
│ to_start_of_ten_minutes('2023-11-12 09:38:18.165575') │
│ Timestamp │
├───────────────────────────────────────────────────────┤
│ 2023-11-12 09:30:00 │
└───────────────────────────────────────────────────────┘
Last modified June 12, 2024 at 9:53 PM EST: updating datetime functions (f087f54)