FROM_UNIXTIME
All functions > DATE AND TIME > FROM_UNIXTIME
Returns a timestamp from the given unix timestamp (BIGINT representation of the number of seconds since 1970-01-01 00:00:00 UTC).
Signatures
Returns: A TIMESTAMP value corresponding to the unix timestamp
FROM_UNIXTIME(unixtime: BIGINT) → TIMESTAMP sql
| Parameter | Type | Required | Description |
|---|---|---|---|
unixtime | BIGINT | Yes | Unix timestamp (seconds since 1970-01-01 00:00:00 UTC) |
Notes
- Converts Unix epoch timestamp to TIMESTAMP
- Input is seconds since January 1, 1970 00:00:00 UTC
- Accepts BIGINT or DECIMAL values
- Useful for converting Unix timestamps from external systems
- Inverse of TO_UNIXTIME
On this page