gpt4 book ai didi

Oracle current_timestamp 到秒的转换

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

我们正在使用 Oracle 数据库。

在我们的表中时间戳存储为自 1970 年以来的秒数,如何将通过 current_timestamp() 函数获得的时间戳转换为秒

最佳答案

这样做:

select round((cast(current_timestamp as date) - date '1970-01-01')*24*60*60) from dual

虽然如果我只对秒感兴趣,我不会使用 current_timestamp,但我会使用 SYSDATE:
select round((SYSDATE - date '1970-01-01')*24*60*60) from dual

关于Oracle current_timestamp 到秒的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5881235/

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