The FromUnixTimestamp() function converts a unix timestamp to a date.
FromUnixTimestamp()
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns the date represented by the given unix timestamp
Returns Unknown if one of the parameter values is unknown or outside the common valid date boundaries.
Unknown
This function returns the date in the format settings of your project.
FromUnixTimestamp(
timestamp
)
FromUnixTimestamp(1648637600) =>Result: Wednesday, March 30, 2022 10:53:20 AM
FromUnixTimestamp(1648637600)
FromUnixTimestamp(unknowntimestamp) =>Result: unknown
FromUnixTimestamp(unknowntimestamp)
numeric
☑️
A unix timestamp (seconds passed since JAN 01 1970)
Last updated 3 years ago
Was this helpful?