在postgresql中将带有偏移量的字符串转换为时间戳

时间:2016-06-01 18:22:03

标签: postgresql timezone timestamp offset

如何转换

'25/02/2014 10:49:13 -8'(datatype is VARCHAR)

'2014-02-25 13:50:13.000000'(datatype is TIMESTAMP)
postgreSQL中的

我认为时间戳是EST时区。

1 个答案:

答案 0 :(得分:0)

尝试方法

  

TO_TIMESTAMP

示例:

to_timestamp('01 Jan 2007 09:09:09', 'DD Mon YYYY HH:MI:SS')

希望这会有所帮助