Convert Unixtime to Datetime SQL (Oracle)(将 Unixtime 转换为日期时间 SQL (Oracle))
问题描述
我有一个日期时间字段 (P_DT),我想返回 P_DT 大于输入 unix 时间戳的所有结果.
I have a datetime field(P_DT) and I would like to return all results where P_DT is greater then an input unix timestamp.
Oracle 是否有任何可以提供帮助的内置函数?
Does Oracle have any built in functions that can help?
在我的搜索中,我找到了 DateTime 到 Unix 的结果,但没有 Unix 到 DateTime...
In my searchs I find resuts for DateTime to Unix but no Unix to DateTime...
推荐答案
没有内置函数.但是写一个相对容易.由于 Unix 时间戳是自 1970 年 1 月 1 日以来的秒数
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 unix_ts_to_date( p_unix_ts IN NUMBER )
RETURN DATE
IS
l_date DATE;
BEGIN
l_date := date '1970-01-01' + p_unix_ts/60/60/24;
RETURN l_date;
END;
你可以看到被调用
SQL> select unix_ts_to_date( 1336822620 ) from dual;
UNIX_TS_TO_DATE(133
-------------------
2012-05-12 11:37:00
这篇关于将 Unixtime 转换为日期时间 SQL (Oracle)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Unixtime 转换为日期时间 SQL (Oracle)
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01