我有一个带有纪元时间戳的表格列我想在PST时间段内将该列转换为日期。
示例select epoch_time from table;
input
epoch_time
1262304151988
1262304157756
输出
epoch_time
YYY-MM_DD
YYY-MM_DD
在PST
答案 0 :(得分:0)
select to_utc_timestamp(1262304151988,'PST');
2010-01-01 00:02:31
select to_utc_timestamp(1262304157756,'PST');
2010-01-01 00:02:37