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

TO_UNIX_TIMESTAMP



Converts a timestamp in a date/time format to a Unix timestamp format. A Unix timestamp represents the number of seconds that have elapsed since January 1, 1970, at 00:00:00 UTC.

Syntax

TO_UNIX_TIMESTAMP(<expr>)

Arguments

ArgumentsDescription
<expr>Timestamp

For more information about the timestamp data type, see Date & Time.

Return Type

BIGINT

Examples

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

Was this page helpful?