Oracle current_timestamp到秒转换

前端之家收集整理的这篇文章主要介绍了Oracle current_timestamp到秒转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们正在使用Oracle数据库.

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

这样做:
select (cast(current_timestamp as date) - date '1970-01-01')*24*60*60 from dual

虽然如果我只对秒感兴趣,我不会使用current_timestamp,但我会使用SYSDATE:

select (SYSDATE - date '1970-01-01')*24*60*60 from dual
原文链接:https://www.f2er.com/oracle/205699.html

猜你在找的Oracle相关文章