在Presto中将数字转换为日期

时间:2018-08-30 22:27:58

标签: date epoch presto

我的表中有一列,其数值等于excel中的日期:

 TABLEA
 Col1
43276
43252
43253
43254

如何将其转换为Presto中的日期?我希望最终结果如下所示:

      Col1
2018-06-25
2018-06-01
2018-06-02
2018-06-03

我尝试这样做,但结果到1970年:

select *, date(from_unixtime(cast(Col1 as bigint))) as Col1 from TABLEA;

0 个答案:

没有答案