Hi,
I have some text data that contains posix timestamps (long integer representing # seconds since 1970). I looked through the date functions and didn't see one that could take a posix timestamp. Can you recommend how I could convert it into a sql date/timestamp?
Thanks,
Mark
|
Paste or email us a data line, which contains posix timestamps :)
|
Timestamp
--------------
1110018000
|
The latest package supports POSIXTOT and TTOPOSIX for POSIX timestamp conversion. For instance, select POSIXTOT(timestamp) as ts from youTable.
|
thank you for your response. I will try it.
|