在PostgreSQL中将儒略日期转换为时间戳

时间:2019-03-01 13:01:48

标签: postgresql datetime epoch julian-date

我有一张充满“朱利安日期”的表格,这是距 1/1/2035 的天数和秒数。我需要将它们转换为普通的postgres时间戳。有人可以帮忙吗?

--Converts '2000-06-20 12:30:15' into an Epoch time base which gives a result of -12612.478993055556
select (EXTRACT(epoch FROM ('2000-06-20 12:30:15'::timestamp - '2035-01-01 00:00:00'))/86400.00) as run_ts

--Question, how to convert -12612.478993055556 back into '2000-06-20 12:30:15'
select -12612.478993055556 ??? as run_ts

1 个答案:

答案 0 :(得分:1)

您可以使用to_timestamp()将纪元转换为时间戳。

您发布的时代与2000-06-20不符,因为您从中删除了另一个日期2035-01-01。

select (EXTRACT(epoch FROM ('2000-06-20 12:30:15'::timestamp )));
 date_part
-----------
 961504215
(1 row)

select to_timestamp(961504215);
      to_timestamp
------------------------
 2000-06-20 08:30:15-04
(1 row)


select to_timestamp(-12612.478993055556);
         to_timestamp
-------------------------------
 1969-12-31 15:29:47.521007-05
(1 row)

编辑

由于您不是在考虑真正的时期,而是在两个日期之间确实存在差异,因此您只需将差异添加到参考日期即可。您可以使用day间隔来消除乘以86400(秒/天)的需求

select  '2035-01-01 00:00:00'::timestamp + interval '1' day *  -12612.478993055556;
      ?column?
---------------------
 2000-06-20 12:30:15