我有一个外置的 hive table。我想把时间戳从gmt转换成ist。但是所有的配置单元函数都只显示convert from和convert to utc。在我的表中,源数据存储在gmt时区。
hive> select d_date from hive_table limit 3; OK 2017-06-01 06:49:46 2017-06-02 11:41:36 2017-06-07 10:34:00
有人能帮忙把这个转换成utc吗?
798qvoo81#
使用 from_utc_timestamp 用你的 timezone .
from_utc_timestamp
timezone
select from_utc_timestamp(<col_name>,"Asia/Kolkata");
1条答案
按热度按时间798qvoo81#
使用
from_utc_timestamp
用你的timezone
.