Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

convert unix timestamp to timestamp format

avatar
New Member

what is the sql query to convert unix timestamp in a column of table to julian or greg date format ?

1 ACCEPTED SOLUTION

avatar
New Member

Got figured it out, below query will convert the unix time to timestamp

select from_unixtime(cast(time/1000 as bigint)) from table_1;

time is the column name

View solution in original post

1 REPLY 1

avatar
New Member

Got figured it out, below query will convert the unix time to timestamp

select from_unixtime(cast(time/1000 as bigint)) from table_1;

time is the column name