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

TO_SECOND



Converts a date with time (timestamp/datetime) to a UInt8 number containing the number of the second in the minute (0-59).

Syntax

TO_SECOND(<expr>)

Arguments

ArgumentsDescription
<expr>timestamp

Return Type

TINYINT

Examples

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

Was this page helpful?