https://stackoverflow.com/questions/49514280/how-to-convert-string-into-timestamp-in-presto-athena

# float -> timestamp
select from_unixtime(CAST(time AS bigint)) from mytable;

# string -> timestamp
select date_parse(timestamp,'%Y/%m/%d %H:%i:%s') from mytable;