将TimeZone Europe / Paris更改为UTC时间

时间:2019-03-15 11:46:01

标签: sql hadoop utc

我想在“ UTC时区”中更改此-> 20190313T092137.000 + 0100。

此功能可修改“欧洲/巴黎时区”中的“ UTC时区”:

select
from_unixtime( 
unix_timestamp(
FROM_UTC_TIMESTAMP(
TIMESTAMP(
CONCAT(
SUBSTR('20190313T082147.760+0000', 1, 4),'-',
SUBSTR('20190313T082147.760+0000', 5,2), '-',
SUBSTR('20190313T082147.760+0000', 7,2), ' ',
SUBSTR('20190313T082147.760+0000', 10,2), ':',
SUBSTR('20190313T082147.760+0000', 12,2), ':',
SUBSTR('20190313T082147.760+0000', 14,2))), 'Europe/Paris')), 'yyyy-MM-dd hh:mm:ss')

但是我不能从“欧洲/巴黎时区”更改为“ UTC时区”。

你知道我该怎么做吗?

0 个答案:

没有答案