📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

TIME_SLOT



Rounds the time to the half-hour.

Syntax

time_slot(<expr>)

Arguments

ArgumentsDescription
<expr>timestamp

Return Type

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

Examples

SELECT time_slot('2023-11-12 09:38:18.165575'); ┌─────────────────────────────────────────┐ │ time_slot('2023-11-12 09:38:18.165575') │ ├─────────────────────────────────────────┤ │ 2023-11-12 09:30:00 │ └─────────────────────────────────────────┘

Was this page helpful?