Skip to main content

toStartOfTenMinutes

Rounds down a date with time to the start of the ten-minute interval.

Syntax

toStartOfTenMinutes(expr)

Arguments

ArgumentsDescription
exprdatetime

Return Type

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

Examples

SELECT toStartOfTenMinutes(now());
+----------------------------+
| toStartOfTenMinutes(now()) |
+----------------------------+
| 2022-03-29 06:40:00 |
+----------------------------+

SELECT toStartOfTenMinutes(to_datetime(1630812366));
+---------------------------------------------+
| toStartOfTenMinutes(to_datetime(1630812366)) |
+---------------------------------------------+
| 2021-09-05 03:20:00 |
+---------------------------------------------+