Skip to content

Rounds down a date with time (timestamp/datetime) to the start of the second.

func.to_start_of_second(<expr>)
func.to_start_of_second('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────────────────┐
│ func.to_start_of_second('2023-11-12 09:38:18.165575') │
│ Timestamp │
├────────────────────────────────────────────────────────────────┤
2023-11-12 09:38:18
└────────────────────────────────────────────────────────────────┘
TO_START_OF_SECOND(<expr>)
ArgumentsDescription
<expr>timestamp

TIMESTAMP, returns date in “YYYY-MM-DD hh:mm:ss.ffffff” format.

SELECT
to_start_of_second('2023-11-12 09:38:18.165575')
┌──────────────────────────────────────────────────┐
│ to_start_of_second('2023-11-12 09:38:18.165575') │
Timestamp
├──────────────────────────────────────────────────┤
2023-11-12 09:38:18
└──────────────────────────────────────────────────┘