gpt4 book ai didi

oracle - 将时间戳数据类型转换为 unix 时间戳 Oracle

转载 作者:行者123 更新时间:2023-12-04 01:23:14 24 4
gpt4 key购买 nike

我在数据库中有一个时间戳数据类型,格式为 24-JuL-11 10.45.00.000000000 AM,想将其转换为 unix 时间戳,我怎样才能得到它?

最佳答案

这个问题几乎是 Convert Unixtime to Datetime SQL (Oracle) 的倒数

正如贾斯汀凯夫所说:

There are no built-in functions. But it's relatively easy to write one. Since a Unix timestamp is the number of seconds since January 1, 1970



由于从另一个日期中减去一个日期会导致它们之间的天数,您可以执行以下操作:
create or replace function date_to_unix_ts( PDate in date ) return number is

l_unix_ts number;

begin

l_unix_ts := ( PDate - date '1970-01-01' ) * 60 * 60 * 24;
return l_unix_ts;

end;

由于自 1970 年以来以秒为单位,因此小数秒的数量无关紧要。不过,您仍然可以使用时间戳数据类型调用它...
SQL> select date_to_unix_ts(systimestamp) from dual;

DATE_TO_UNIX_TS(SYSTIMESTAMP)
-----------------------------
1345801660

针对您的评论,我很抱歉,但我没有看到这种行为:
SQL> with the_dates as (
2 select to_date('08-mar-12 01:00:00 am', 'dd-mon-yy hh:mi:ss am') as dt
3 from dual
4 union all
5 select to_date('08-mar-12', 'dd-mon-yy')
6 from dual )
7 select date_to_unix_ts(dt)
8 from the_dates
9 ;

DATE_TO_UNIX_TS(DT)
-------------------
1331168400
1331164800

SQL>

有 3,600 秒的差异,即 1 小时。

关于oracle - 将时间戳数据类型转换为 unix 时间戳 Oracle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12105691/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com