https://stackoverflow.com/questions/49514280/how-to-convert-string-into-timestamp-in-presto-athena
date_parse(timestamp,'%Y/%m/%d %H:%i:%s')
사용# 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;