Created 12-01-2016 06:34 PM
what is the sql query to convert unix timestamp in a column of table to julian or greg date format ?
Created 12-01-2016 10:24 PM
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